diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-04-16 20:07:57 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-04-16 20:08:13 +0200 |
commit | d002ed0b944ec2ed269d2aedd589a51b64c67a60 (patch) | |
tree | 41b7322528fb7ae0200241b277d2abdcd20ca2ce /lib | |
parent | e043f9c6fe6b96e5423ae05316f1dbab0d659aae (diff) | |
download | nextcloud-server-d002ed0b944ec2ed269d2aedd589a51b64c67a60.tar.gz nextcloud-server-d002ed0b944ec2ed269d2aedd589a51b64c67a60.zip |
set strict error reporting
Diffstat (limited to 'lib')
-rw-r--r-- | lib/base.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php index 93d6fb66c7e..7e862b978b1 100644 --- a/lib/base.php +++ b/lib/base.php @@ -23,8 +23,7 @@ // set some stuff //ob_start(); -// error_reporting(E_ALL | E_STRICT); -error_reporting( E_ERROR | E_PARSE | E_WARNING ); // MDB2 gives loads of strict error, disabling for now +error_reporting(E_ALL | E_STRICT); date_default_timezone_set('Europe/Berlin'); ini_set('arg_separator.output','&'); |