From 36044538abcc9420ac28d21c1bc6e2b88bf0337d Mon Sep 17 00:00:00 2001 From: wlx Date: Wed, 23 Dec 2009 08:19:59 +0000 Subject: [PATCH] fix word error. --- application/default/controllers/DataController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/default/controllers/DataController.php b/application/default/controllers/DataController.php index 4347dbf3..c5054ea7 100755 --- a/application/default/controllers/DataController.php +++ b/application/default/controllers/DataController.php @@ -117,7 +117,7 @@ class DataController extends Zend_Controller_Action //展示最近20条离线神情记录情况 function offlineappAction() { - $sql="select * from offlineapp where ts_approved is not null and pdflinke<>'' order by ts_created desc limit 20"; + $sql="select * from offlineapp where ts_approved is not null and pdflink<>'' order by ts_created desc limit 20"; $this->view->rows=$this->db->fetchAll($sql); } function requestAction()