diff options
author | Mario <mario@mariovavti.com> | 2022-05-19 08:27:09 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-05-19 08:27:09 +0000 |
commit | 6f994709b9df15165a8f39ecfc15b6569a54c636 (patch) | |
tree | ae12b774317cc0aeecbd48e21eec04bfeff4844f | |
parent | 55d833a9c86ad9356e76bf47d0f48dd40552944a (diff) | |
download | volse-hubzilla-6f994709b9df15165a8f39ecfc15b6569a54c636.tar.gz volse-hubzilla-6f994709b9df15165a8f39ecfc15b6569a54c636.tar.bz2 volse-hubzilla-6f994709b9df15165a8f39ecfc15b6569a54c636.zip |
do not show deprecated warnings by default
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -698,7 +698,7 @@ function startup() { error_reporting(E_ALL & ~E_NOTICE); if (version_compare(PHP_VERSION, '8.0.0') >= 0) { - error_reporting(E_ALL & ~E_WARNING & ~E_NOTICE); + error_reporting(E_ALL & ~E_WARNING & ~E_NOTICE & ~E_DEPRECATED); } // Some hosting providers block/disable this |