mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-16 11:41:19 +01:00
Small fix for a blank cat_id being passed to id2name().
This commit is contained in:
parent
f4fcd97d1f
commit
ea096e29ce
@ -414,8 +414,12 @@
|
||||
return $this->db->f('cat_id');
|
||||
}
|
||||
|
||||
function id2name($cat_id, $item = 'name')
|
||||
function id2name($cat_id = '', $item = 'name')
|
||||
{
|
||||
if ($cat_id == '')
|
||||
{
|
||||
return '--';
|
||||
}
|
||||
switch($item)
|
||||
{
|
||||
case 'name': $value = 'cat_name'; break;
|
||||
|
Loading…
Reference in New Issue
Block a user