#
#-----[ OPEN 打開 ]------------------------------------------------
#
代碼: 選擇全部
includes/functions_topics_list.php
#
#-----[ FIND 尋找 ]------------------------------------------------
#
代碼: 選擇全部
if( $topic_type == POST_ANNOUNCE )
{
$topic_type = $lang['Topic_Announcement'] . ' ';
}
else if( $topic_type == POST_STICKY )
{
$topic_type = $lang['Topic_Sticky'] . ' ';
}
#
#-----[ AFTER, ADD 之後, 加上 ]------------------------------------
#
代碼: 選擇全部
else if( $topic_type == POST_COMMEND )
{
$topic_type = $lang['Topic_Commend'] . ' ';
}
#
#-----[ FIND 尋找 ]------------------------------------------------
#
代碼: 選擇全部
if( $topic_rowset[$i]['topic_type'] == POST_ANNOUNCE )
{
$folder = $images['folder_announce'];
$folder_new = $images['folder_announce_new'];
}
else if( $topic_rowset[$i]['topic_type'] == POST_STICKY )
{
$folder = $images['folder_sticky'];
$folder_new = $images['folder_sticky_new'];
}
#
#-----[ AFTER, ADD 之後, 加上 ]------------------------------------
#
代碼: 選擇全部
else if( $topic_rowset[$i]['topic_type'] == POST_COMMEND )
{
$folder = $images['folder_commend'];
$folder_new = $images['folder_commend_new'];
}
#
#-----[ SAVE/CLOSE ALL FILES 儲存/關閉所有檔案 ]-------------------
#
# EoM 外掛修正結束