diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-07-13 17:17:46 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-07-13 17:17:46 +0000 |
commit | c9357ff15341d2e456f5dcaf7f39f3272228b1cc (patch) | |
tree | f9560aa558650705a3a9bd5b8a8808d996704459 /phpBB/viewtopic.php | |
parent | cfd7c9e7046f1107fba894390ec7ac05c59eaef8 (diff) | |
download | forums-c9357ff15341d2e456f5dcaf7f39f3272228b1cc.tar forums-c9357ff15341d2e456f5dcaf7f39f3272228b1cc.tar.gz forums-c9357ff15341d2e456f5dcaf7f39f3272228b1cc.tar.bz2 forums-c9357ff15341d2e456f5dcaf7f39f3272228b1cc.tar.xz forums-c9357ff15341d2e456f5dcaf7f39f3272228b1cc.zip |
Added a needed stripslashes to the topic_title
git-svn-id: file:///svn/phpbb/trunk@652 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 70743dc40a..0d2b780d8f 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -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)) |