mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
[ticket/10126] Use binary "and not" instead of binary "xor" in error_reporting.
Make what we want to achieve clear by using "and not" instead of "xor". PHPBB3-10126
This commit is contained in:
@@ -35,7 +35,7 @@ if (!defined('E_DEPRECATED'))
|
||||
{
|
||||
define('E_DEPRECATED', 8192);
|
||||
}
|
||||
//error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED);
|
||||
//error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
|
||||
error_reporting(E_ALL);
|
||||
|
||||
@set_time_limit(0);
|
||||
|
Reference in New Issue
Block a user