diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-03-17 00:37:39 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-03-17 00:37:39 +0000 |
commit | 2dba075e8a9750ccde392979a780e35d3aa86727 (patch) | |
tree | dc1d574cbb8d20cfd778b6bfd19712ba3b9c6637 | |
parent | e92e6d4da42ca6fd273cf9b4b4042af2cd00af83 (diff) |
Fix typo: tag_block -> tag_theme
Overlooked when I renamed this class.
-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 5077255b..3c35a191 100644 --- a/modules/tag/helpers/tag.php +++ b/modules/tag/helpers/tag.php @@ -69,7 +69,7 @@ class tag_Core { if ($tags) { $cloud = new View("tag_cloud.html"); $cloud->max_count = $tags[0]->count; - usort($tags, array("tag_block", "sort_by_name")); + usort($tags, array("tag_theme", "sort_by_name")); $cloud->tags = $tags; return $cloud; } |