summaryrefslogtreecommitdiffstats
path: root/system/helpers/form_helper.php
diff options
context:
space:
mode:
authornisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in>2013-03-23 06:23:51 +0100
committernisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in>2013-03-23 06:23:51 +0100
commita5bcfb1d291d42521b0dc420b1b501c36710277d (patch)
treef5ec3aa630a5fc3bc5d5e4f0a023d8a28c7e4086 /system/helpers/form_helper.php
parenta945d078d769f00410d10d10b9fdac3ea2e55b45 (diff)
Removed $recurse parameter in lieu of auto parsing. Changed "provision" entry.
Diffstat (limited to 'system/helpers/form_helper.php')
-rw-r--r--system/helpers/form_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php
index d2c22b05c..2238af92a 100644
--- a/system/helpers/form_helper.php
+++ b/system/helpers/form_helper.php
@@ -647,7 +647,7 @@ if ( ! function_exists('set_value'))
return form_prep($OBJ->set_value($field, $default), $is_textarea);
}
- if (FALSE !== ($OBJ =& _get_input_object()) && ($value = $OBJ->post($field, FALSE, TRUE)))
+ if (FALSE !== ($OBJ =& _get_input_object()) && ($value = $OBJ->post($field, FALSE)))
{
return form_prep($value, $is_textarea);
}