summaryrefslogtreecommitdiffstats
path: root/system/helpers/security_helper.php
diff options
context:
space:
mode:
authorEric Roberts <eric@cryode.com>2012-07-14 01:30:21 +0200
committerEric Roberts <eric@cryode.com>2012-07-14 01:30:21 +0200
commitfbdad67cac99868509bc1a27affdfc3e4b2a1dee (patch)
tree52c1e86324ee1a8bb36e119711707bdf09419a87 /system/helpers/security_helper.php
parentfa337081ced1b1d34805d28f8307f069edf16cdf (diff)
parentdecc642f8c81dcf57e2e3217a44d5b1385163456 (diff)
Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into develop
Diffstat (limited to 'system/helpers/security_helper.php')
-rw-r--r--system/helpers/security_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/security_helper.php b/system/helpers/security_helper.php
index 0e8e9f93d..5ecc960bc 100644
--- a/system/helpers/security_helper.php
+++ b/system/helpers/security_helper.php
@@ -125,7 +125,7 @@ if ( ! function_exists('encode_php_tags'))
*/
function encode_php_tags($str)
{
- return str_replace(array('<?', '?>'), array('&lt;?', '?&gt;'), $str);
+ return str_replace(array('<?', '?>'), array('&lt;?', '?&gt;'), $str);
}
}