diff options
author | Cory <ckdarby@gmail.com> | 2012-06-06 18:46:40 +0200 |
---|---|---|
committer | Cory <ckdarby@gmail.com> | 2012-06-06 18:46:40 +0200 |
commit | 61fb9c1596ea220a0a8106160c5c68f9343ff9df (patch) | |
tree | 136126cc057bc58000f020990e32685c89adf399 /system/core/CodeIgniter.php | |
parent | 037944e6c2083ce82ef5785947fddbf671362006 (diff) | |
parent | 47b673324f06236264ca64f8c3155aab51762609 (diff) |
Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into issue_1374
Conflicts:
user_guide_src/source/changelog.rst
Diffstat (limited to 'system/core/CodeIgniter.php')
-rwxr-xr-x | system/core/CodeIgniter.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index b3e984d4d..8159b19f5 100755 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -73,9 +73,9 @@ */ set_error_handler('_exception_handler'); - if ( ! is_php('5.3')) + if ( ! is_php('5.4')) { - @set_magic_quotes_runtime(0); // Kill magic quotes + @ini_set('magic_quotes_runtime', 0); // Kill magic quotes } /* |