mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
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:
@@ -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))
|
||||
|
Reference in New Issue
Block a user