Added a needed stripslashes to the topic_title

git-svn-id: file:///svn/phpbb/trunk@652 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
James Atkinson 2001-07-13 17:17:46 +00:00
parent cfd7c9e704
commit c9357ff153

View file

@ -128,7 +128,7 @@ $forum_name = stripslashes($forum_row[0]['forum_name']);
$forum_id = $forum_row[0]['forum_id'];
$topic_id = $forum_row[0]['topic_id'];
$total_replies = $forum_row[0]['topic_replies'] + 1;
$topic_title = $forum_row[0]['topic_title'];
$topic_title = stripslashes($forum_row[0]['topic_title']);
$topic_time = $forum_row[0]['topic_time'];
if(!empty($post_id))