summaryrefslogtreecommitdiffstats
path: root/system/helpers/security_helper.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-07 05:16:53 +0200
committeradmin <devnull@localhost>2006-10-07 05:16:53 +0200
commit75198f97ba9df6e5696ac295820d9d73a4e4f441 (patch)
tree0ed58ab84c4a5f97808e2af8422f578e625300a8 /system/helpers/security_helper.php
parent88a8ad187b13b36d6120eae2344fe16c3a76219d (diff)
Diffstat (limited to 'system/helpers/security_helper.php')
-rw-r--r--system/helpers/security_helper.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/security_helper.php b/system/helpers/security_helper.php
index f14ba72a0..347cab427 100644
--- a/system/helpers/security_helper.php
+++ b/system/helpers/security_helper.php
@@ -37,8 +37,8 @@
*/
function xss_clean($str, $charset = 'ISO-8859-1')
{
- $obj =& get_instance();
- return $obj->input->xss_clean($str, $charset);
+ $CI =& get_instance();
+ return $CI->input->xss_clean($str, $charset);
}
// --------------------------------------------------------------------