diff options
-rw-r--r-- | modules/tag/helpers/tag.php | 2 | ||||
-rw-r--r-- | modules/tag/views/tag_cloud.html.php (renamed from modules/tag/views/tag_block_cloud.html.php) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/helpers/tag.php b/modules/tag/helpers/tag.php index 4b65016d..34ff16b6 100644 --- a/modules/tag/helpers/tag.php +++ b/modules/tag/helpers/tag.php @@ -71,7 +71,7 @@ class tag_Core { public static function cloud($count) { $tags = tag::popular_tags($count)->as_array(); if ($tags) { - $cloud = new View("tag_block_cloud.html"); + $cloud = new View("tag_cloud.html"); $cloud->max_count = $tags[0]->count; usort($tags, array("tag_block", "sort_by_name")); $cloud->tags = $tags; diff --git a/modules/tag/views/tag_block_cloud.html.php b/modules/tag/views/tag_cloud.html.php index 6abaf953..6abaf953 100644 --- a/modules/tag/views/tag_block_cloud.html.php +++ b/modules/tag/views/tag_cloud.html.php |