1 頁 (共 1 頁)

發表於 : 週一 10月 14, 2002 7:57 pm
竹貓之友
wow....原來如此....
趕快來試試

ㄏㄏㄏ...謝 啦 :mrgreen:

發表於 : 週一 10月 14, 2002 5:30 pm
GM CodeMaster
編輯 viewtopic.php

找到

//
// Decide how to order the post display
//
if ( !empty($HTTP_POST_VARS['postorder']) || !empty($HTTP_GET_VARS['postorder']) )
{
$post_order = (!empty($HTTP_POST_VARS['postorder'])) ? $HTTP_POST_VARS['postorder'] : $HTTP_GET_VARS['postorder'];
$post_time_order = ($post_order == "asc") ? "ASC" : "DESC";
}
else
{
$post_order = 'asc';
$post_time_order = 'ASC';
}

把它變成

//
// Decide how to order the post display
//
if ( !empty($HTTP_POST_VARS['postorder']) || !empty($HTTP_GET_VARS['postorder']) )
{
$post_order = (!empty($HTTP_POST_VARS['postorder'])) ? $HTTP_POST_VARS['postorder'] : $HTTP_GET_VARS['postorder'];
$post_time_order = ($post_order == "asc") ? "ASC" : "DESC";
}
else
{
// Overrite default setting
//$post_order = 'asc';
//$post_time_order = 'ASC';
$post_order = 'desc';
$post_time_order = 'DESC';
}


:smoke:

About PHPBB 文章排序問題

發表於 : 週一 10月 14, 2002 4:41 pm
竹貓之友
不知道貴論壇的文章排序是如何設成的
因為 PHPBB 的原始設定為
舊文章會排在後面...
每回覆一篇文章後...該(新)文章會排在舊文章之後...
但貴論壇的文章是自動的把新PO的文章變在前面...

如:
所有文章 最新的

並不是:
所有文章 最舊的 呢???

麻煩本版的設定人教一下...好嗎!? 謝謝