fix status error

This commit is contained in:
wlx 2014-09-02 23:47:52 +00:00
parent d9aba365b9
commit 46b0a1f783
1 changed files with 1 additions and 1 deletions

View File

@ -816,7 +816,7 @@ class Admin_ReviewController extends Zend_Controller_Action
right join metadata md on md.uuid=m.uuid right join metadata md on md.uuid=m.uuid
left join users u on u.id=m.userid left join users u on u.id=m.userid
left join geonetworkmetadata gn on m.uuid=gn.uuid left join geonetworkmetadata gn on m.uuid=gn.uuid
where status=0 $searchjoin order by m.ts_created desc"; where m.status=0 $searchjoin order by m.ts_created desc";
$re = $this->db->query($sql); $re = $this->db->query($sql);
$rows = $re->fetchAll(); $rows = $re->fetchAll();