diff options
Diffstat (limited to 'modules/tag/helpers')
-rw-r--r-- | modules/tag/helpers/tag.php | 2 |
1 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; |