diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-05-10 23:46:24 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-05-10 23:46:24 -0400 |
commit | cc0e6e9912fea2ef7ada9d49c8cf9e4427cea5f1 (patch) | |
tree | e3d793ced85a7654e03707da02e2c2e682b1e4e3 /phpBB/download | |
parent | 3f9e9b581b8aad15ccfa01128c0dac8fd648e6ac (diff) | |
parent | 0d407f10d08d620116b7279d57b4ea2375aea394 (diff) | |
download | forums-cc0e6e9912fea2ef7ada9d49c8cf9e4427cea5f1.tar forums-cc0e6e9912fea2ef7ada9d49c8cf9e4427cea5f1.tar.gz forums-cc0e6e9912fea2ef7ada9d49c8cf9e4427cea5f1.tar.bz2 forums-cc0e6e9912fea2ef7ada9d49c8cf9e4427cea5f1.tar.xz forums-cc0e6e9912fea2ef7ada9d49c8cf9e4427cea5f1.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/10126] Use binary "and not" instead of binary "xor" in error_reporting.
Diffstat (limited to 'phpBB/download')
-rw-r--r-- | phpBB/download/file.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php index d33a50c149..c26261a22d 100644 --- a/phpBB/download/file.php +++ b/phpBB/download/file.php @@ -35,7 +35,7 @@ if (isset($_GET['avatar'])) { 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); |