mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-15 14:16:28 +02:00
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:
@ -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'] . " ";
|
||||
}
|
||||
|
Reference in New Issue
Block a user