mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
Forgot to strip tags to prevent some browsers from displaying raw tags rather than removing/interpreting them
git-svn-id: file:///svn/phpbb/trunk@3031 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -136,7 +136,7 @@ $template->assign_block_vars('navlinks', array(
|
||||
$template->assign_vars(array(
|
||||
'FORUM_ID' => $forum_id,
|
||||
'FORUM_NAME' => $forum_data['forum_name'],
|
||||
'FORUM_DESC' => $forum_data['forum_desc']
|
||||
'FORUM_DESC' => strip_tags($forum_data['forum_desc'])
|
||||
));
|
||||
|
||||
if ($forum_data['forum_postable'])
|
||||
|
Reference in New Issue
Block a user