From 2992daa00e09d5452e3baf0c279a93220d7a362b Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Sun, 20 Jun 2010 16:55:42 -0700 Subject: Add "Tag: %s" in the title on tag pages. Fixes ticket #1097. --- modules/tag/controllers/tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') 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; } -- cgit v1.2.3