diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-08-17 00:32:43 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-08-17 00:32:43 +0000 |
commit | baddbe37773f70a6cc6be96d086b4c61e5108537 (patch) | |
tree | 06f899cccafc357d4093a19b1c6d6a62d141ddb9 /phpBB/viewforum.php | |
parent | 6d2981029757c99c6c25658960bc3625794802d3 (diff) | |
download | forums-baddbe37773f70a6cc6be96d086b4c61e5108537.tar forums-baddbe37773f70a6cc6be96d086b4c61e5108537.tar.gz forums-baddbe37773f70a6cc6be96d086b4c61e5108537.tar.bz2 forums-baddbe37773f70a6cc6be96d086b4c61e5108537.tar.xz forums-baddbe37773f70a6cc6be96d086b4c61e5108537.zip |
Just some jiggling
git-svn-id: file:///svn/phpbb/trunk@895 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r-- | phpBB/viewforum.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index 5236a2e9f1..d3e0abfbcb 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -397,6 +397,10 @@ if($total_topics || $total_announcements) { $topic_title = preg_replace($orig_word, $replacement_word, stripslashes($topic_rowset[$i]['topic_title'])); } + else + { + $topic_title = stripslashes($topic_rowset[$i]['topic_title']); + } $topic_type = $topic_rowset[$i]['topic_type']; @@ -413,7 +417,6 @@ if($total_topics || $total_announcements) $topic_type = ""; } - $topic_id = $topic_rowset[$i]['topic_id']; $replies = $topic_rowset[$i]['topic_replies']; |