~~~
/**
*/apps/weiba/Lib/Action/IndexAction.class.php
*
* public function detail(){}
*
*
*/
$order = 'top desc';
if($_GET['order']=='post_time'){
$order .= ',post_time desc';
$this->assign('order','post_time');
}else{
$order .= ',last_reply_time desc';
$this->assign('order','reply_time');
}
//后面這里新增下面代碼(大約350行位置)
//判斷條件這里指定ID為1和2這兩微吧,其它原樣
if($weiba_id==1 or $weiba_id==2){
$order .= ',post_time desc';
$this->assign('order','post_time');
}
~~~