From 3910ffd664a3f8f60e175d5ced48f63b1154143d Mon Sep 17 00:00:00 2001
From: Marc Alexander <admin@m-a-styles.de>
Date: Tue, 8 Dec 2015 19:38:29 +0100
Subject: [PATCH] [ticket/14349] Do output suppressed errors

PHPBB3-14349
---
 phpBB/install/startup.php | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/phpBB/install/startup.php b/phpBB/install/startup.php
index 0d3e01efaa..927f529b73 100644
--- a/phpBB/install/startup.php
+++ b/phpBB/install/startup.php
@@ -51,6 +51,11 @@ function installer_msg_handler($errno, $msg_text, $errfile, $errline)
 {
 	global $phpbb_installer_container;
 
+	if (error_reporting() == 0)
+	{
+		return true;
+	}
+
 	switch ($errno)
 	{
 		case E_NOTICE: