mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00: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:
parent
fbe796ed21
commit
e654727d5d
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ $template->assign_block_vars('navlinks', array(
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
'FORUM_ID' => $forum_id,
|
'FORUM_ID' => $forum_id,
|
||||||
'FORUM_NAME' => $forum_data['forum_name'],
|
'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'])
|
if ($forum_data['forum_postable'])
|
||||||
|
|
Loading…
Add table
Reference in a new issue