diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-16 11:47:36 +0800 |
---|---|---|
committer | <unostar@danalan.info> | 2009-06-16 18:27:39 +0800 |
commit | f6be08a4f43c8b26e9b215ac9258a898a863d2a7 (patch) | |
tree | f2b3df2c86c74d5eabb3596a9122be8adf68a221 | |
parent | 0b05383c4565807b8aae8e5c5310a193d01b5a96 (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.
Signed-off-by: <unostar@danalan.info>
-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 ?> |