From: Mikael Nordfeldth Date: Thu, 10 Jul 2014 11:16:51 +0000 (+0200) Subject: Strict standards and deprecation warnings are good, but confusing X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b3d6c51c799265ac5cbc05db7693a0cac087ed31;p=quix0rs-gnu-social.git 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. --- 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); }