mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 22:40:39 +02:00
Merge branch '3.2.x'
This commit is contained in:
@@ -62,8 +62,10 @@ function installer_msg_handler($errno, $msg_text, $errfile, $errline)
|
||||
case E_WARNING:
|
||||
case E_USER_WARNING:
|
||||
case E_USER_NOTICE:
|
||||
$msg = '[phpBB debug] "' . $msg_text . '" in file ' . $errfile . ' on line ' . $errline;
|
||||
$msg = '[phpBB Debug] "' . $msg_text . '" in file ' . $errfile . ' on line ' . $errline;
|
||||
|
||||
if (!empty($phpbb_installer_container))
|
||||
{
|
||||
try
|
||||
{
|
||||
/** @var \phpbb\install\helper\iohandler\iohandler_interface $iohandler */
|
||||
@@ -74,6 +76,13 @@ function installer_msg_handler($errno, $msg_text, $errfile, $errline)
|
||||
{
|
||||
print($msg);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
print($msg);
|
||||
}
|
||||
|
||||
return;
|
||||
break;
|
||||
case E_USER_ERROR:
|
||||
$msg = '<b>General Error:</b><br />' . $msg_text . '<br /> in file ' . $errfile . ' on line ' . $errline;
|
||||
|
Reference in New Issue
Block a user