diff options
Diffstat (limited to 'views/default/widgets/cloud_generic_index')
-rw-r--r-- | views/default/widgets/cloud_generic_index/content.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/views/default/widgets/cloud_generic_index/content.php b/views/default/widgets/cloud_generic_index/content.php index d87e70b16..1f4410f76 100644 --- a/views/default/widgets/cloud_generic_index/content.php +++ b/views/default/widgets/cloud_generic_index/content.php @@ -22,8 +22,9 @@ $widget_group = $vars["entity"]->widget_group; if (!isset($widget_group)) $widget_group = "";
-
-$body = elgg_view_tagcloud($threshold, $num_items, $metadata_name, $maintype, $subtype, $widget_group , -1);;
+$options = array('type' => $maintype, 'subtype' => $subtype);
+$body = elgg_view_tagcloud($options);
+//$body = elgg_view_tagcloud($threshold, $num_items, $metadata_name, $maintype, $subtype, $widget_group , -1);;
echo $body;
?>
|