diff options
Diffstat (limited to 'modules/gallery/controllers/albums.php')
| -rw-r--r-- | modules/gallery/controllers/albums.php | 15 | 
1 files changed, 4 insertions, 11 deletions
| diff --git a/modules/gallery/controllers/albums.php b/modules/gallery/controllers/albums.php index a378f3ee..e1985cfb 100644 --- a/modules/gallery/controllers/albums.php +++ b/modules/gallery/controllers/albums.php @@ -28,20 +28,13 @@ class Albums_Controller extends Items_Controller {        // sure that we're actually receiving an object        Kohana::show_404();      } -    $page_size = module::get_var("gallery", "page_size", 9); +      if (!access::can("view", $album)) { -      if ($album->id == 1) { -        $view = new Theme_View("page.html", "other", "login"); -        $view->page_title = t("Log in to Gallery"); -        $view->content = new View("login_ajax.html"); -        $view->content->form = auth::get_login_form("login/auth_html"); -        print $view; -        return; -      } else { -        access::forbidden(); -      } +      print auth::require_login(); +      return;      } +    $page_size = module::get_var("gallery", "page_size", 9);      $input = Input::instance();      $show = $input->get("show"); | 
