summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-06-05 23:24:57 +0200
committerAndrey Andreev <narf@bofh.bg>2012-06-05 23:24:57 +0200
commite6e6eff842ce4314b9ae7f1442579a1dba355e8d (patch)
tree3a13ed3dbe12fe323665b2cbb32c2d0486ff4666 /system
parent24bd230337cc469941dbdb51e05351cc1b3fbe14 (diff)
Replace set_magic_quotes_runtime() with an ini_set() call
Diffstat (limited to 'system')
-rwxr-xr-xsystem/core/CodeIgniter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php
index 50eae8fb1..8159b19f5 100755
--- a/system/core/CodeIgniter.php
+++ b/system/core/CodeIgniter.php
@@ -75,7 +75,7 @@
if ( ! is_php('5.4'))
{
- @set_magic_quotes_runtime(0); // Kill magic quotes
+ @ini_set('magic_quotes_runtime', 0); // Kill magic quotes
}
/*