From 0e57ddfb4e0c0395b87ddc6febf02eb112a0d1c1 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Wed, 17 Feb 2016 11:44:32 +0900 Subject: [PATCH] Fix E_STRICT errors being displayed in PHP 5.3 --- common/autoload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/autoload.php b/common/autoload.php index 0e47865c0..49bc48ef0 100644 --- a/common/autoload.php +++ b/common/autoload.php @@ -3,7 +3,7 @@ /** * Set error reporting rules. */ -error_reporting(E_ALL ^ E_NOTICE ^ E_STRICT ^ E_DEPRECATED); +error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED); /** * Suppress date/time errors until the internal time zone is set (see below).