summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-03-17 00:37:39 +0000
committerBharat Mediratta <bharat@menalto.com>2009-03-17 00:37:39 +0000
commit2dba075e8a9750ccde392979a780e35d3aa86727 (patch)
treedc1d574cbb8d20cfd778b6bfd19712ba3b9c6637
parente92e6d4da42ca6fd273cf9b4b4042af2cd00af83 (diff)
Fix typo: tag_block -> tag_theme
Overlooked when I renamed this class.
-rw-r--r--modules/tag/helpers/tag.php2
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;
}