aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/style.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-05-10 23:42:22 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-05-10 23:42:22 -0400
commit0d407f10d08d620116b7279d57b4ea2375aea394 (patch)
treeecc8d4d14f54269ce03f6c8997e4e76f1ba00dfa /phpBB/style.php
parentf670aefd3694ad0de804414e8d9880dfa1c920b3 (diff)
parent5a4a1e3c25b0e10a3ce008dc2eded29decb0f469 (diff)
downloadforums-0d407f10d08d620116b7279d57b4ea2375aea394.tar
forums-0d407f10d08d620116b7279d57b4ea2375aea394.tar.gz
forums-0d407f10d08d620116b7279d57b4ea2375aea394.tar.bz2
forums-0d407f10d08d620116b7279d57b4ea2375aea394.tar.xz
forums-0d407f10d08d620116b7279d57b4ea2375aea394.zip
Merge remote-tracking branch 'bantu/ticket/10126' into develop-olympus
* bantu/ticket/10126: [ticket/10126] Use binary "and not" instead of binary "xor" in error_reporting.
Diffstat (limited to 'phpBB/style.php')
-rw-r--r--phpBB/style.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/style.php b/phpBB/style.php
index 8ca1751391..f3e1b4c89e 100644
--- a/phpBB/style.php
+++ b/phpBB/style.php
@@ -20,7 +20,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);
require($phpbb_root_path . 'config.' . $phpEx);