mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00: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:
parent
cfd7c9e704
commit
c9357ff153
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue