updated return_array() to work with queries plus added function to read one cat

This commit is contained in:
bettina 2001-02-21 01:56:10 +00:00
parent 6fa74c988f
commit 548d841d1e

View File

@ -40,12 +40,11 @@
return $s;
}
function return_array($type ='all',$start,$limit,$query = '',$sort = '',$order = '') {
function return_array($type = 'all',$start,$limit,$query = '',$sort = '',$order = '') {
global $phpgw, $phpgw_info;
$filter = $this->filter($type);
if (!$sort) { $sort = "ASC"; }
if ($order) { $ordermethod = " order by $order $sort"; }
@ -79,7 +78,8 @@
function return_single($id = '')
{
$this->db->query("select * from phpgw_categories where cat_id='$id'",__LINE__,__FILE__);
$this->db->query("select * from phpgw_categories where cat_id='$id' and "
. "cat_appname='" . $this->app_name . "'",__LINE__,__FILE__);
$this->db->next_record(); {
$cats[0]['id'] = $this->db->f('cat_id');