diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-11 21:27:16 -0800 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-11 21:27:16 -0800 |
| commit | 09739dfd2c52ebc1b898b6e3b3aabd8fe41f018e (patch) | |
| tree | 39262d0039d70fdc0985c281c1cf301f8bc4c8f3 /modules/gallery/controllers/albums.php | |
| parent | a893b0317d5489552c4c001901ff246e0ec5af1d (diff) | |
| parent | cd45c94fe69f24b0f80a79e4b9c402763739ecfc (diff) | |
Merge branch 'master' into talmdal_dev
Diffstat (limited to 'modules/gallery/controllers/albums.php')
| -rw-r--r-- | modules/gallery/controllers/albums.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/modules/gallery/controllers/albums.php b/modules/gallery/controllers/albums.php index e1985cfb..c2b474ee 100644 --- a/modules/gallery/controllers/albums.php +++ b/modules/gallery/controllers/albums.php @@ -26,12 +26,18 @@ class Albums_Controller extends Items_Controller { if (!is_object($album)) { // show() must be public because we route to it in url::parse_url(), so make // sure that we're actually receiving an object - Kohana::show_404(); + throw new Kohana_404_Exception(); } if (!access::can("view", $album)) { - print auth::require_login(); - return; + if ($album->id == 1) { + // Even show the login page to logged in users. + // It's a better user experience than a "Dang" error page. + print auth::login_page(); + return; + } else { + access::required("view", $album); + } } $page_size = module::get_var("gallery", "page_size", 9); |
