修复离线数据展示错误的问题

This commit is contained in:
wlx 2009-12-23 08:18:50 +00:00
parent bef568c0ce
commit 530546651e
1 changed files with 1 additions and 1 deletions

View File

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