summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers/photos.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2010-02-11 21:27:16 -0800
committerTim Almdal <tnalmdal@shaw.ca>2010-02-11 21:27:16 -0800
commit09739dfd2c52ebc1b898b6e3b3aabd8fe41f018e (patch)
tree39262d0039d70fdc0985c281c1cf301f8bc4c8f3 /modules/gallery/controllers/photos.php
parenta893b0317d5489552c4c001901ff246e0ec5af1d (diff)
parentcd45c94fe69f24b0f80a79e4b9c402763739ecfc (diff)
Merge branch 'master' into talmdal_dev
Diffstat (limited to 'modules/gallery/controllers/photos.php')
-rw-r--r--modules/gallery/controllers/photos.php11
1 files changed, 4 insertions, 7 deletions
diff --git a/modules/gallery/controllers/photos.php b/modules/gallery/controllers/photos.php
index 778e9ae7..f2d47eec 100644
--- a/modules/gallery/controllers/photos.php
+++ b/modules/gallery/controllers/photos.php
@@ -22,14 +22,11 @@ class Photos_Controller extends Items_Controller {
if (!is_object($photo)) {
// 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", $photo)) {
- print auth::require_login();
- return;
- }
-
+
+ access::required("view", $photo);
+
$where = array(array("type", "!=", "album"));
$position = $photo->parent()->get_position($photo, $where);
if ($position > 1) {