]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - inc/poche/Tools.class.php
error reporting level set in E_ALL & ~E_NOTICE by default, can be overriden in config
[github/wallabag/wallabag.git] / inc / poche / Tools.class.php
index 8073a3fe88d77c28ead1fa6e7242933322d687fe..1ef875c91ba7c23c62c738ca3cc0bc7e488c9996 100755 (executable)
@@ -18,8 +18,6 @@ class Tools
             die(_('Oops, it seems you don\'t have PHP 5.'));
         }
 
-        error_reporting(E_ALL);
-
         function stripslashesDeep($value) {
             return is_array($value)
                 ? array_map('stripslashesDeep', $value)
@@ -64,7 +62,7 @@ class Tools
         if (strpos($host, ':') !== false) {
             $serverport = '';
         }
-        
+
         return 'http' . ($https ? 's' : '') . '://'
             . $host . $serverport . $scriptname;
     }