From: Gunnar Wrobel Date: Mon, 4 Oct 2010 00:24:12 +0000 (+0200) Subject: Hide E_DEPRECATED errors (because of PEAR). X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c1be353541f70d1b33aee512b4a1426e6cb96a0d;p=horde.git Hide E_DEPRECATED errors (because of PEAR). --- diff --git a/components/script/horde-components.php b/components/script/horde-components.php index 6c275f58a..7285a58dc 100755 --- a/components/script/horde-components.php +++ b/components/script/horde-components.php @@ -8,7 +8,7 @@ if (strpos('@php_dir@', '@php_dir') === 0) { * We are heavily relying on the PEAR libraries which are not clean with regard * to E_STRICT. */ -error_reporting(E_ALL & ~E_STRICT); +error_reporting(E_ALL & ~E_STRICT & ~E_DEPRECATED); require_once 'Horde/Autoloader/Default.php'; Components::main();