diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-12-20 22:20:56 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-12-20 22:20:56 +0100 |
commit | 2fe81c1ccb20035c9d66503726a7ff8df8b7fd78 (patch) | |
tree | 8f14add298fcf637650f2a6deceeef750ee4914a /phpBB/phpbb/install | |
parent | c2a5411dcb50a732585ab72844fed88dc7770edc (diff) | |
download | forums-2fe81c1ccb20035c9d66503726a7ff8df8b7fd78.tar forums-2fe81c1ccb20035c9d66503726a7ff8df8b7fd78.tar.gz forums-2fe81c1ccb20035c9d66503726a7ff8df8b7fd78.tar.bz2 forums-2fe81c1ccb20035c9d66503726a7ff8df8b7fd78.tar.xz forums-2fe81c1ccb20035c9d66503726a7ff8df8b7fd78.zip |
[ticket/14373] Do not pass arrays to strpos()
PHPBB3-14373
Diffstat (limited to 'phpBB/phpbb/install')
-rw-r--r-- | phpBB/phpbb/install/helper/iohandler/iohandler_base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/helper/iohandler/iohandler_base.php b/phpBB/phpbb/install/helper/iohandler/iohandler_base.php index 8dee5390a9..7271fe9bc0 100644 --- a/phpBB/phpbb/install/helper/iohandler/iohandler_base.php +++ b/phpBB/phpbb/install/helper/iohandler/iohandler_base.php @@ -101,7 +101,7 @@ abstract class iohandler_base implements iohandler_interface */ public function add_error_message($error_title, $error_description = false) { - if (strpos($error_title, '<br />') !== false) + if (!is_array($error_title) && strpos($error_title, '<br />') !== false) { $error_title = strip_tags(htmlspecialchars_decode($error_title)); } |