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:44:11 +00:00
parent 5e23bd2ce8
commit 6faf899733

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);
}
}
}