summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/helpers/file_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php
index b717aaa0d..be616f62d 100644
--- a/system/helpers/file_helper.php
+++ b/system/helpers/file_helper.php
@@ -52,7 +52,7 @@ if ( ! function_exists('read_file'))
*/
function read_file($file)
{
- return file_get_contents($file);
+ return @file_get_contents($file);
}
}