mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00: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:
parent
b0b5cc368d
commit
04b0b11e97
1 changed files with 2 additions and 2 deletions
|
@ -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'] . " ";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue