From: Thierry Parmentelat Date: Wed, 6 Apr 2011 12:18:32 +0000 (+0200) Subject: the dropdown for managing tags in the slice page has a few more X-Git-Tag: plewww-4.3-64~13 X-Git-Url: http://git.onelab.eu/?p=plewww.git;a=commitdiff_plain;h=88827316ba632e7bbdda624b607b6797d2e69ea4 the dropdown for managing tags in the slice page has a few more entries including fcdistro --- diff --git a/planetlab/slices/slice.php b/planetlab/slices/slice.php index 83b9280..44185e6 100644 --- a/planetlab/slices/slice.php +++ b/planetlab/slices/slice.php @@ -1062,7 +1062,7 @@ $tag_value_threshold=24; function tag_selector ($tag) { return array("display"=>$tag['tagname'],"value"=>$tag['tag_type_id']); } - $all_tags= $api->GetTagTypes( array ("category"=>"slice*","-SORT"=>"+tagname"), array("tagname","tag_type_id")); + $all_tags= $api->GetTagTypes( array ("category"=>"*slice*","-SORT"=>"+tagname"), array("tagname","tag_type_id")); if ($profiling) plc_debug_prof('9 tagtypes',count($all_tags)); $selector_tag=array_map("tag_selector",$all_tags);