diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-15 20:47:36 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-15 20:47:36 -0700 |
commit | b6c34512313ae96fc4539bfc07add13a3a4b3022 (patch) | |
tree | 62bd316b697c7f1f34bcd7d784c0adf19ee5afc2 | |
parent | b8c68ce2f9e61ff7df5c17cd99142eb75df17a0c (diff) |
Fix the bug introduced by r79582ee, where we try to set the title of the tag album to tag->title. which doesn't exist.
-rw-r--r-- | themes/default/views/page.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index 62d7ff85..3feb14cb 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -17,7 +17,7 @@ <?= t("Movie :: %movie_title", array("movie_title" => p::clean($theme->item()->title))) ?> <? endif ?> <? elseif ($theme->tag()): ?> - <?= t("Browse Tag :: %tag_title", array("tag_title" => p::clean($theme->tag()->title))) ?> + <?= t("Browse Tag :: %tag_title", array("tag_title" => p::clean($theme->tag()->name))) ?> <? else: /* Not an item, not a tag, no page_title specified. Help! */ ?> <?= t("Gallery") ?> <? endif ?> |