diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-07-12 10:27:48 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-07-12 10:27:48 +0200 |
commit | 7ac09978c2fb2cae07f6998e245cda3aaa2e1230 (patch) | |
tree | b25918a3efdfcf6077fe0da7525f45ad83682a21 /system/helpers/security_helper.php | |
parent | f82914a62a36fcd758efa98deb499d581207b3b8 (diff) | |
parent | 32b1edbe15bb14f1afcffe0b841546eb7cf1dfc8 (diff) |
Merge pull request #1609 from vkeranov/develop
helper fixes and small cleanup
Diffstat (limited to 'system/helpers/security_helper.php')
-rw-r--r-- | system/helpers/security_helper.php | 2 |
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('<?', '?>'), $str); + return str_replace(array('<?', '?>'), array('<?', '?>'), $str); } } |