mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[task/php54] Refactor error_reporting call slightly.
Separate error level assignment into a variable in this commit so that the only difference between Olympus and Ascraeus is the addition of logic altering $level. PHPBB3-10615
This commit is contained in:
parent
b652e1a1bb
commit
71afba0ded
1 changed files with 2 additions and 1 deletions
|
@ -19,7 +19,8 @@ if (!defined('E_DEPRECATED'))
|
||||||
{
|
{
|
||||||
define('E_DEPRECATED', 8192);
|
define('E_DEPRECATED', 8192);
|
||||||
}
|
}
|
||||||
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
|
$level = E_ALL & ~E_NOTICE & ~E_DEPRECATED;
|
||||||
|
error_reporting($level);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Remove variables created by register_globals from the global scope
|
* Remove variables created by register_globals from the global scope
|
||||||
|
|
Loading…
Add table
Reference in a new issue