Tags are now returned grouped by class, I seem to have missed this call

when I changed the API...
feature.search-filter
Thomas Keller 2011-10-04 00:46:48 +02:00
parent 160d11b89b
commit 9e2ea7404b
1 changed files with 5 additions and 3 deletions

View File

@ -119,9 +119,11 @@ class IDF_Views_Issue
}
// Issue class tag statistics
$tags = $prj->getTagCloud();
foreach ($tags as $t) {
$tagStatistics[$t->class][$t->name] = array($t->nb_use, $t->id);
$grouped_tags = $prj->getTagCloud();
foreach ($grouped_tags as $class => $tags) {
foreach ($tags as $tag) {
$tagStatistics[$class][$tag->name] = array($tag->nb_use, $tag->id);
}
}
foreach($tagStatistics as $k => $v) {
$nbIssueInClass = 0;