diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-26 23:19:06 +0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-26 23:19:42 +0800 |
commit | f3e45d49a3fb621d7a23fe7c24af5ad160859687 (patch) | |
tree | 1a25d424e92833ff424cf28ab4d472968b646518 | |
parent | eee8dbe511a86967cc27d93c26718253b301bec6 (diff) |
Change the movie controller to set the page type to "movie". Ticket #467
Signed-off-by: Tim Almdal <tnalmdal@shaw.ca>
-rw-r--r-- | modules/gallery/controllers/movies.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/controllers/movies.php b/modules/gallery/controllers/movies.php index 86b0f177..d8cca825 100644 --- a/modules/gallery/controllers/movies.php +++ b/modules/gallery/controllers/movies.php @@ -44,7 +44,7 @@ class Movies_Controller extends Items_Controller { ->where("id <=", $photo->id) ->count_all(); - $template = new Theme_View("page.html", "photo"); + $template = new Theme_View("page.html", "movie"); $template->set_global("item", $photo); $template->set_global("children", array()); $template->set_global("children_count", $photo->children_count()); |