update( $_GET['tid'], array( 'across_fids' => '' ) ); cpmsg('操作成功',$purl,'succeed'); break; default : loadcache('forums'); $page = max(1, intval($_GET['page'])); $limit = 20; $start = ($page - 1) * $limit; $count = DB::result_first("select count(*) from %t where across_fids != ''", array('forum_thread')); $lists = array(); if($count){ $lists = DB::fetch_all("select tid,fid,subject,authorid,author,across_fids,dateline from %t where across_fids != '' order by tid desc %i", array('forum_thread', DB::limit($start, $limit))); } $multipage = multi($count, $limit, $page , $curl); include template('thread_across:admin_across'); break; } ?>