From 86a8ce18398d759d786469655840e0701bed8f4b Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 14 Sep 2012 16:38:17 +0000 Subject: [PATCH] disable PHP 5.4 E_STRICT warnings in setup, as already done inside EGroupware --- setup/inc/functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/inc/functions.inc.php b/setup/inc/functions.inc.php index 4a4b7bde00..fb584a4499 100644 --- a/setup/inc/functions.inc.php +++ b/setup/inc/functions.inc.php @@ -13,7 +13,7 @@ * @version $Id$ */ -error_reporting(error_reporting() & ~E_NOTICE); +error_reporting(error_reporting() & ~E_NOTICE & ~E_STRICT); // for an old header, we need to setup the reference before including it $GLOBALS['phpgw_info'] =& $GLOBALS['egw_info'];