diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-06-20 16:55:42 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-06-20 16:55:42 -0700 |
commit | 2992daa00e09d5452e3baf0c279a93220d7a362b (patch) | |
tree | 7cee58a3d429f18dc977cb05ef25c19a8f2af0fd | |
parent | 892727830d873a9f0a1a49f10ee14b0890088b23 (diff) |
Add "Tag: %s" in the title on tag pages. Fixes ticket #1097.
-rw-r--r-- | modules/tag/controllers/tags.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/controllers/tags.php b/modules/tag/controllers/tags.php index f9a56ccf..f3d456d3 100644 --- a/modules/tag/controllers/tags.php +++ b/modules/tag/controllers/tags.php @@ -41,7 +41,7 @@ class Tags_Controller extends Controller { $template->set_global("children", $tag->items($page_size, $offset)); $template->set_global("children_count", $children_count); $template->content = new View("dynamic.html"); - $template->content->title = $tag->name; + $template->content->title = t("Tag: %tag_name", array("tag_name" => $tag->name)); print $template; } |