disable PHP 5.4 E_STRICT warnings in setup, as already done inside EGroupware

This commit is contained in:
Ralf Becker 2012-09-14 16:38:17 +00:00
parent 170d120dd2
commit 86a8ce1839

View File

@ -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'];