aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/helper/iohandler/iohandler_base.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-12-07 23:36:49 +0100
committerMarc Alexander <admin@m-a-styles.de>2015-12-07 23:36:49 +0100
commit6188a8777950ffeaa80593d815600c84911ac932 (patch)
treebb1f0565f82d381d026f5e86dc8a2092942c54c7 /phpBB/phpbb/install/helper/iohandler/iohandler_base.php
parentf14a9b70694ef1ff575e7db46fdcdec8c9bc87e4 (diff)
downloadforums-6188a8777950ffeaa80593d815600c84911ac932.tar
forums-6188a8777950ffeaa80593d815600c84911ac932.tar.gz
forums-6188a8777950ffeaa80593d815600c84911ac932.tar.bz2
forums-6188a8777950ffeaa80593d815600c84911ac932.tar.xz
forums-6188a8777950ffeaa80593d815600c84911ac932.zip
[ticket/14344] Improve output of HTML errors trigged during install
PHPBB3-14344
Diffstat (limited to 'phpBB/phpbb/install/helper/iohandler/iohandler_base.php')
-rw-r--r--phpBB/phpbb/install/helper/iohandler/iohandler_base.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/phpbb/install/helper/iohandler/iohandler_base.php b/phpBB/phpbb/install/helper/iohandler/iohandler_base.php
index 530cb4766b..8dee5390a9 100644
--- a/phpBB/phpbb/install/helper/iohandler/iohandler_base.php
+++ b/phpBB/phpbb/install/helper/iohandler/iohandler_base.php
@@ -101,6 +101,10 @@ abstract class iohandler_base implements iohandler_interface
*/
public function add_error_message($error_title, $error_description = false)
{
+ if (strpos($error_title, '<br />') !== false)
+ {
+ $error_title = strip_tags(htmlspecialchars_decode($error_title));
+ }
$this->errors[] = $this->translate_message($error_title, $error_description);
}