From b3d6c51c799265ac5cbc05db7693a0cac087ed31 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Thu, 10 Jul 2014 13:16:51 +0200 Subject: [PATCH] Strict standards and deprecation warnings are good, but confusing we know we have to get rid of PEAR::DB, but don't alarm users with hundreds of lines of output. --- lib/installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/installer.php b/lib/installer.php index ed5bc540cf..dc4c7786a8 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -537,7 +537,7 @@ abstract class Installer $this->updateStatus("Initializing..."); ini_set('display_errors', 1); - error_reporting(E_ALL); + error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE); if (!defined('GNUSOCIAL')) { define('GNUSOCIAL', true); } -- 2.39.2