~~~
/**
*/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');
}
~~~