fix ticket #67.(离线申请记录显示问题)

This commit is contained in:
wlx 2009-03-13 03:06:37 +00:00
parent 39f35c4765
commit be2bcbca39
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class DataController extends Zend_Controller_Action
//展示最近20条离线神情记录情况 //展示最近20条离线神情记录情况
function offlineappAction() function offlineappAction()
{ {
$sql="select * from offlineapp order by id desc limit 20"; $sql="select * from offlineapp where ts_approved is not null order by id desc limit 20";
$this->view->rows=$this->db->fetchAll($sql); $this->view->rows=$this->db->fetchAll($sql);
} }
function requestAction() function requestAction()