Changed check against topic_type to match change in constant names

git-svn-id: file:///svn/phpbb/trunk@505 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-06-16 22:51:40 +00:00
parent b0b5cc368d
commit 04b0b11e97

View file

@ -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'] . " ";
}