Вообще копать надо здесь
Код: Выделить всё
else if( $topic_type == POST_GLOBAL_TOPIC )
{
$topic_type = $lang['Topic_global_topic'] . ' ';
}
Код: Выделить всё
else if( $topic_type == POST_GLOBAL_TOPIC )
{
$topic_type = $lang['Topic_global_topic'] . ' ';
}
Xpert, как сделать так, чтобы Global Announcement не появлялся с обычными объявлениями, чтобы для Global Announcement было свой раздел?Xpert писал(а):Если установлен Global Announcement, то глобальное объявление будет появляться вместе с другими объявлениями.
Код: Выделить всё
код удалил
Код: Выделить всё
FIND
$topic_rowset = array();
$total_announcements = 0;
while( $row = $db->sql_fetchrow($result) )
{
$topic_rowset[] = $row;
$total_announcements++;
}
REPLACE WITH
$topic_rowset = array();
$global_anno_cnt = 0;
while( $row = $db->sql_fetchrow($result) )
{
$topic_rowset[] = $row;
$global_anno_cnt ++;
}
FIND
// 2 rows deleted - Global announcement MOD
while( $row = $db->sql_fetchrow($result) )
REPLACE WITH
// 2 rows deleted - Global announcement MOD
$total_announcements = 0;
while( $row = $db->sql_fetchrow($result) )