Fix E_STRICT errors being displayed in PHP 5.3

This commit is contained in:
Kijin Sung 2016-02-17 11:44:32 +09:00
parent e5ffb52c53
commit 0e57ddfb4e

View file

@ -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).