summaryrefslogtreecommitdiffstats
path: root/system/database/DB_utility.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-02-26 17:51:18 +0100
committerAndrey Andreev <narf@devilix.net>2014-02-26 17:51:18 +0100
commit58e1c00275ecbe40c1fb27271650e75f80f0cf1d (patch)
tree3c5a7cb2870d38ed1a2c1d1b2798543fd94cb2c9 /system/database/DB_utility.php
parent382b51383c84fbb7f861fcd87b0b71b35c9f2869 (diff)
More removal of error suppression usage
Diffstat (limited to 'system/database/DB_utility.php')
-rw-r--r--system/database/DB_utility.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php
index 11c5e116b..a6961120e 100644
--- a/system/database/DB_utility.php
+++ b/system/database/DB_utility.php
@@ -356,8 +356,8 @@ abstract class CI_DB_utility {
// Is the encoder supported? If not, we'll either issue an
// error or use plain text depending on the debug settings
- if (($prefs['format'] === 'gzip' && ! @function_exists('gzencode'))
- OR ($prefs['format'] === 'zip' && ! @function_exists('gzcompress')))
+ if (($prefs['format'] === 'gzip' && ! function_exists('gzencode'))
+ OR ($prefs['format'] === 'zip' && ! function_exists('gzcompress')))
{
if ($this->db->db_debug)
{