diff options
author | Jose Quinteiro <github@quinteiro.org> | 2020-03-09 12:59:54 -0700 |
---|---|---|
committer | Jose Quinteiro <github@quinteiro.org> | 2020-03-09 12:59:54 -0700 |
commit | 6995e98df6b9c35904043c3096241ca5a91e460b (patch) | |
tree | 8ae677794ce915a60ba271523ddcbe9473a89a16 /lib/base.php | |
parent | 6cf679e04ec4edab71871d88640adc933df08b6b (diff) | |
download | nextcloud-server-6995e98df6b9c35904043c3096241ca5a91e460b.tar.gz nextcloud-server-6995e98df6b9c35904043c3096241ca5a91e460b.zip |
E_ALL already sets E_DEPRECATED
Signed-off-by: Jose Quinteiro <github@quinteiro.org>
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index e0aae986f8f..c0feee3d1e7 100644 --- a/lib/base.php +++ b/lib/base.php @@ -604,7 +604,7 @@ class OC { // Override php.ini and log everything if we're troubleshooting if (self::$config->getValue('loglevel') === ILogger::DEBUG) { - error_reporting(E_ALL | E_DEPRECATED); + error_reporting(E_ALL); } // Don't display errors and log them |