mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
Fix E_STRICT errors being displayed in PHP 5.3
This commit is contained in:
parent
e5ffb52c53
commit
0e57ddfb4e
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@
|
||||||
/**
|
/**
|
||||||
* Set error reporting rules.
|
* 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).
|
* Suppress date/time errors until the internal time zone is set (see below).
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue