commit | 075f6fa31aab069aaa21a4d6f13e3ca850012d05 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@bofh.bg> | Thu Nov 01 15:18:44 2012 +0200 |
committer | Andrey Andreev <narf@bofh.bg> | Thu Nov 01 15:18:44 2012 +0200 |
tree | ec8f6aeb112156086a12e9fb1d231ae39ea1286c | |
parent | 7c4d10660a0a47446474bf97e3cb65f80693f1ee [diff] [blame] |
Fix an erroneous variable name
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 9c4c4da..2f451b4 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php
@@ -621,7 +621,7 @@ return str_replace(array('<', '>'), array('<', '>'), stripslashes($str)); } - return str_replace(array("'", '"'), array(''', '"'), stripslashes($data)); + return str_replace(array("'", '"'), array(''', '"'), stripslashes($str)); } }