diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-06-16 22:51:40 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-06-16 22:51:40 +0000 |
commit | 04b0b11e9766c72bc32762be3a8728b3bccfcdd5 (patch) | |
tree | 499fb26be5712ea0da57948d497a287ad6687566 | |
parent | b0b5cc368d9fbd461d23c7ad3e5181612d5d9268 (diff) | |
download | forums-04b0b11e9766c72bc32762be3a8728b3bccfcdd5.tar forums-04b0b11e9766c72bc32762be3a8728b3bccfcdd5.tar.gz forums-04b0b11e9766c72bc32762be3a8728b3bccfcdd5.tar.bz2 forums-04b0b11e9766c72bc32762be3a8728b3bccfcdd5.tar.xz forums-04b0b11e9766c72bc32762be3a8728b3bccfcdd5.zip |
Changed check against topic_type to match change in constant names
git-svn-id: file:///svn/phpbb/trunk@505 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/viewforum.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index aec6aaeab0..7986d4abf2 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -296,11 +296,11 @@ if($total_topics) $topic_type = $topic_rowset[$x]['topic_type']; - if($topic_type == ANNOUCE) + if($topic_type == POST_ANNOUNCE) { $topic_type = $lang['Annoucement'] . " "; } - else if($topic_type == STICKY) + else if($topic_type == POST_STICKY) { $topic_type = $lang['Sticky'] . " "; } |