Quote:
Originally Posted by HMBeaty
Actually, to make a quick correction (if I remember correctly)...
This
PHP Code:
error_reporting(E_ALL & ~E_NOTICE);
Should be
PHP Code:
error_reporting(E_ALL & ~E_NOTICE & ~8192);
|
Quote:
Originally Posted by Dismounted
No need to suppress E_DEPRECATED warnings now, as they should be fixed.
|
And even if you do, it should be -E_DEPRECATED , not -8192