aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/debug/error_handler.php
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2015-12-11 21:39:24 +0100
committerTristan Darricau <tristan.darricau@sensiolabs.com>2015-12-15 19:55:55 +0100
commit6ffbd26377ae7a29dd10f3df5a3a4f76504e7d77 (patch)
treed219af59ffba2a9c31887ed98d537bddff9cfd85 /phpBB/phpbb/debug/error_handler.php
parentdee22f4a281335b51333ff493b34c026f36e1804 (diff)
downloadforums-6ffbd26377ae7a29dd10f3df5a3a4f76504e7d77.tar
forums-6ffbd26377ae7a29dd10f3df5a3a4f76504e7d77.tar.gz
forums-6ffbd26377ae7a29dd10f3df5a3a4f76504e7d77.tar.bz2
forums-6ffbd26377ae7a29dd10f3df5a3a4f76504e7d77.tar.xz
forums-6ffbd26377ae7a29dd10f3df5a3a4f76504e7d77.zip
[ticket/14177] CS
PHPBB3-14177
Diffstat (limited to 'phpBB/phpbb/debug/error_handler.php')
-rw-r--r--phpBB/phpbb/debug/error_handler.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/phpbb/debug/error_handler.php b/phpBB/phpbb/debug/error_handler.php
index 2b182628a8..246e724f56 100644
--- a/phpBB/phpbb/debug/error_handler.php
+++ b/phpBB/phpbb/debug/error_handler.php
@@ -14,13 +14,12 @@
namespace phpbb\debug;
use Symfony\Component\Debug\ErrorHandler;
-use Symfony\Component\Filesystem\Exception\IOException;
class error_handler extends ErrorHandler
{
public function handleError($type, $message, $file, $line, array $context, array $backtrace = null)
{
- if ($type === E_USER_WARNING|| $type === E_USER_NOTICE)
+ if ($type === E_USER_WARNING || $type === E_USER_NOTICE)
{
$handler = defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler';