diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index d147872c34..6549ba9b0d 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -3465,8 +3465,13 @@ function msg_handler($errno, $msg_text, $errfile, $errline)
// remove complete path to installation, with the risk of changing backslashes meant to be there
$errfile = str_replace(array(phpbb_realpath($phpbb_root_path), '\\'), array('', '/'), $errfile);
$msg_text = str_replace(array(phpbb_realpath($phpbb_root_path), '\\'), array('', '/'), $msg_text);
-
echo '[phpBB Debug] PHP Notice: in file ' . $errfile . ' on line ' . $errline . ': ' . $msg_text . '
' . "\n";
+
+ // we are writing an image - the user won't see the debug, so let's place it in the log
+ if (defined('IMAGE_OUTPUT'))
+ {
+ add_log('critical', 'LOG_IMAGE_GENERATION_ERROR', $errfile, $errline, $msg_text);
+ }
// echo '
BACKTRACE
' . get_backtrace() . '
' . "\n";
}
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php
index 9a9b89652a..f03298642a 100644
--- a/phpBB/language/en/acp/common.php
+++ b/phpBB/language/en/acp/common.php
@@ -574,6 +574,8 @@ $lang = array_merge($lang, array(
'LOG_USERS_APPROVED' => 'Users approved in usergroup %1$s
» %2$s',
'LOG_USERS_PENDING' => 'Users requested to join group “%1$s” and need to be approved
» %2$s',
+ 'LOG_IMAGE_GENERATION_ERROR' => 'Error while creating image
» Error in %1$s on line %2$s: %3$s',
+
'LOG_IMAGESET_ADD_DB' => 'Added new imageset to database
» %s',
'LOG_IMAGESET_ADD_FS' => 'Add new imageset on filesystem
» %s',
'LOG_IMAGESET_DELETE' => 'Deleted imageset
» %s',