summaryrefslogtreecommitdiff
path: root/modules/tag/helpers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-10-28 12:15:52 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-10-28 12:15:52 -0700
commit7ea13b3869dee33804606a17488bb1cd26759bdb (patch)
tree39c98eb3b788e528003730894a3f897a579a3808 /modules/tag/helpers
parent8ef78de3f72f695225ac87223d0815235a630417 (diff)
Normalize capitalization ticket #596
Diffstat (limited to 'modules/tag/helpers')
-rw-r--r--modules/tag/helpers/tag_block.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tag/helpers/tag_block.php b/modules/tag/helpers/tag_block.php
index 37da0b16..20ef18fa 100644
--- a/modules/tag/helpers/tag_block.php
+++ b/modules/tag/helpers/tag_block.php
@@ -19,7 +19,7 @@
*/
class tag_block_Core {
static function get_site_list() {
- return array("tag" => t("Popular Tags"));
+ return array("tag" => t("Popular tags"));
}
static function get($block_id, $theme) {
@@ -28,7 +28,7 @@ class tag_block_Core {
case "tag":
$block = new Block();
$block->css_id = "g-tag";
- $block->title = t("Popular Tags");
+ $block->title = t("Popular tags");
$block->content = new View("tag_block.html");
$block->content->cloud = tag::cloud(30);