From c9357ff15341d2e456f5dcaf7f39f3272228b1cc Mon Sep 17 00:00:00 2001 From: James Atkinson Date: Fri, 13 Jul 2001 17:17:46 +0000 Subject: Added a needed stripslashes to the topic_title git-svn-id: file:///svn/phpbb/trunk@652 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/viewtopic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/viewtopic.php') 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)) -- cgit v1.2.1