diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-22 10:55:51 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-22 10:55:51 +0000 |
commit | 8a45f27fca39f0356987c011c80e07c0f0413d6a (patch) | |
tree | 14a06cf61f30e584c1e08dfcfc346b789d82da01 /engine | |
parent | a56299d152912d2617ffe4f7f59fce7f3d925e88 (diff) | |
download | elgg-8a45f27fca39f0356987c011c80e07c0f0413d6a.tar.gz elgg-8a45f27fca39f0356987c011c80e07c0f0413d6a.tar.bz2 |
Refs #2091 added a tagcloud block that accepts subtype
git-svn-id: http://code.elgg.org/elgg/trunk@8814 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/tags.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/engine/lib/tags.php b/engine/lib/tags.php index 32d48eff2..1116d63f3 100644 --- a/engine/lib/tags.php +++ b/engine/lib/tags.php @@ -269,10 +269,11 @@ function elgg_view_tagcloud(array $options = array()) { } $tag_data = elgg_get_tags($options); - return elgg_view("output/tagcloud", array('value' => $tag_data, - 'type' => $type, - 'subtype' => $subtype)); - + return elgg_view("output/tagcloud", array( + 'value' => $tag_data, + 'type' => $type, + 'subtype' => $subtype, + )); } /** |