summaryrefslogtreecommitdiffstats
path: root/system/core/CodeIgniter.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-02-20 01:30:14 +0100
committerAndrey Andreev <narf@devilix.net>2014-02-20 01:30:14 +0100
commitca39f2efb2d827d13e4065535355de894965435a (patch)
tree36e63c8173dfeb197e4c40762cc9390e8ba6054d /system/core/CodeIgniter.php
parent02545895c1c6551be3b167bcada171fe9423d443 (diff)
Don't use error suppression with ini_set()
Diffstat (limited to 'system/core/CodeIgniter.php')
-rw-r--r--system/core/CodeIgniter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php
index eb3927e47..6d6747106 100644
--- a/system/core/CodeIgniter.php
+++ b/system/core/CodeIgniter.php
@@ -74,7 +74,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
register_shutdown_function('_shutdown_handler');
// Kill magic quotes
- is_php('5.4') OR @ini_set('magic_quotes_runtime', 0);
+ is_php('5.4') OR ini_set('magic_quotes_runtime', 0);
/*
* ------------------------------------------------------