diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-01 14:18:44 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-01 14:18:44 +0100 |
commit | 075f6fa31aab069aaa21a4d6f13e3ca850012d05 (patch) | |
tree | ec8f6aeb112156086a12e9fb1d231ae39ea1286c /system/helpers/form_helper.php | |
parent | 7c4d10660a0a47446474bf97e3cb65f80693f1ee (diff) |
Fix an erroneous variable name
Diffstat (limited to 'system/helpers/form_helper.php')
-rw-r--r-- | system/helpers/form_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 9c4c4dae6..2f451b402 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -621,7 +621,7 @@ if ( ! function_exists('form_prep')) return str_replace(array('<', '>'), array('<', '>'), stripslashes($str)); } - return str_replace(array("'", '"'), array(''', '"'), stripslashes($data)); + return str_replace(array("'", '"'), array(''', '"'), stripslashes($str)); } } |