mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Add a check to make sure $data is safe
This commit is contained in:
parent
45111b8cd9
commit
b039cccab5
@ -583,9 +583,12 @@ class resources_bo
|
||||
);
|
||||
$only_keys = 'res_id,name';
|
||||
$data = $this->so->search(array(),$only_keys,$order_by='name',$extra_cols='',$wildcard='%',$empty,$op='OR',$limit,$filter);
|
||||
foreach($data as $resource)
|
||||
if(is_array($data) && $data)
|
||||
{
|
||||
$resources[$resource['res_id']] = $resource['name'];
|
||||
foreach($data as $resource)
|
||||
{
|
||||
$resources[$resource['res_id']] = $resource['name'];
|
||||
}
|
||||
}
|
||||
|
||||
return $resources;
|
||||
|
Loading…
Reference in New Issue
Block a user