Check to make sure found resource is an array instead of a column flag.

Fixes fatal error when deleting a category.
This commit is contained in:
Nathan Gray 2015-01-27 22:45:28 +00:00
parent c5cbc573f8
commit eea3190f4c

View File

@ -152,10 +152,14 @@ class resources_hooks
$query = array('filter' => $args['cat_id']);
$bo = new resources_bo();
$bo->get_rows($query, $resources, $readonly);
foreach($resources as $resource)
{
$resource['cat_id'] = $new_cat_id;
$bo->save($resource);
if(is_array($resource))
{
$resource['cat_id'] = $new_cat_id;
$bo->save($resource);
}
}
}