Fix resource categories to work when first added from search results

This commit is contained in:
nathangray 2016-07-20 12:01:07 -06:00
parent 0d37c8413f
commit 0f571fe7a2

View File

@ -550,15 +550,19 @@ class resources_bo
// Edit dialog sends exec as an option, don't add categories // Edit dialog sends exec as an option, don't add categories
if(count($resources) && !$options['exec']) if(count($resources) && !$options['exec'])
{ {
$_resources = array_map(
function($id) { return 'r'.$id;},
array_keys($resources)
);
$list['cat-'.$cat_id] = array( $list['cat-'.$cat_id] = array(
'label' => $cat, 'label' => $cat,
'resources' => $resources, 'resources' => $_resources,
); );
} }
else if ($resources && $options['exec']) else if ($resources && $options['exec'])
{ {
array_map( array_map(
function($id,$name) use (&$list) { $list[''+$id] = $name;}, function($id,$name) use (&$list) { $list[''.$id] = $name;},
array_keys($resources), $resources array_keys($resources), $resources
); );
} }