diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2011-01-03 11:41:25 -0800 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2011-01-03 11:41:25 -0800 |
| commit | 4a882108259f9542a6c8f2ffe95c9ee0e1c102cd (patch) | |
| tree | 93f259072f84bc511f83fde65a63be288460e685 /modules/gallery/controllers/albums.php | |
| parent | f364e8a96b47f0e4f674c8b36317fc80184b219a (diff) | |
Follow on to cfaa62370ecbdb3badf4ab68bbefa7cfedaea154 to fix indentation.
Fixes #1569.
Diffstat (limited to 'modules/gallery/controllers/albums.php')
| -rw-r--r-- | modules/gallery/controllers/albums.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/gallery/controllers/albums.php b/modules/gallery/controllers/albums.php index e69f6b6d..25df0da7 100644 --- a/modules/gallery/controllers/albums.php +++ b/modules/gallery/controllers/albums.php @@ -61,15 +61,15 @@ class Albums_Controller extends Items_Controller { } $template = new Theme_View("page.html", "collection", "album"); - $template->set_global(array("page" => $page, - "page_title" => null, - "max_pages" => $max_pages, - "page_size" => $page_size, - "item" => $album, - "children" => $album->viewable()->children($page_size, $offset), - "children_count" => $children_count, - "parents" => $album->parents()->as_array())); - // view calls empty() on this + $template->set_global( + array("page" => $page, + "page_title" => null, + "max_pages" => $max_pages, + "page_size" => $page_size, + "item" => $album, + "children" => $album->viewable()->children($page_size, $offset), + "parents" => $album->parents()->as_array(), // view calls empty() on this + "children_count" => $children_count)); $template->content = new View("album.html"); $album->increment_view_count(); |
