mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 03:13:40 +01:00
update return_single()
This commit is contained in:
parent
f1ceb55920
commit
cda8181ed7
@ -167,7 +167,8 @@
|
|||||||
$this->db->query("select * from phpgw_categories where cat_id='$id' and "
|
$this->db->query("select * from phpgw_categories where cat_id='$id' and "
|
||||||
. "cat_appname='" . $this->app_name . "'",__LINE__,__FILE__);
|
. "cat_appname='" . $this->app_name . "'",__LINE__,__FILE__);
|
||||||
|
|
||||||
while ($this->db->next_record()) {
|
$this->db->next_record();
|
||||||
|
|
||||||
$cats[0]['id'] = $this->db->f('cat_id');
|
$cats[0]['id'] = $this->db->f('cat_id');
|
||||||
$cats[0]['owner'] = $this->db->f('cat_owner');
|
$cats[0]['owner'] = $this->db->f('cat_owner');
|
||||||
$cats[0]['access'] = $this->db->f('cat_access');
|
$cats[0]['access'] = $this->db->f('cat_access');
|
||||||
@ -175,7 +176,7 @@
|
|||||||
$cats[0]['name'] = $this->db->f('cat_name');
|
$cats[0]['name'] = $this->db->f('cat_name');
|
||||||
$cats[0]['description'] = $this->db->f('cat_description');
|
$cats[0]['description'] = $this->db->f('cat_description');
|
||||||
$cats[0]['data'] = $this->db->f('cat_data');
|
$cats[0]['data'] = $this->db->f('cat_data');
|
||||||
}
|
|
||||||
return $cats;
|
return $cats;
|
||||||
}
|
}
|
||||||
/*!
|
/*!
|
||||||
|
Loading…
Reference in New Issue
Block a user