diff --git a/application/models/Archive.php b/application/models/Archive.php index b4958a83..7f5a2189 100644 --- a/application/models/Archive.php +++ b/application/models/Archive.php @@ -226,6 +226,7 @@ class Archive $sql="select a.* from ".$this->tbl_archives." a left join ".$this->tbl_catalog." ac on a.id=ac.aid left join ".$this->tbl_categorys." c on ac.cid=c.id "; if (!empty($code)) $sql.=" where c.code='".$code."'"; $rs=$this->db->query($sql); - $rows=$rs->fetchAll(); + $rows=$rs->fetchAll(); + return $rows; } }