修复未提交数据列表为空的问题

This commit is contained in:
wlx 2012-06-12 05:23:25 +00:00
parent 26245f17d5
commit 21118617c2
1 changed files with 1 additions and 1 deletions

View File

@ -2501,7 +2501,7 @@ class Admin_DataController extends Zend_Controller_Action
order by gn.id desc order by gn.id desc
"; ";
$sth = $this->db->prepare($sql); $sth = $this->db->prepare($sql);
$sth->execute(array($u_id)); $sth->execute();
$rows = $sth->fetchAll(); $rows = $sth->fetchAll();