Skip to content

Commit

Permalink
Add "Tag: %s" in the title on tag pages. Fixes ticket #1097.
Browse files Browse the repository at this point in the history
  • Loading branch information
bharat committed Jun 20, 2010
1 parent 8927278 commit 2992daa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tag/controllers/tags.php
Expand Up @@ -41,7 +41,7 @@ public function show($tag_id) {
$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;
}
Expand Down

0 comments on commit 2992daa

Please sign in to comment.