summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers/access.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/helpers/access.php
parenta893b0317d5489552c4c001901ff246e0ec5af1d (diff)
parentcd45c94fe69f24b0f80a79e4b9c402763739ecfc (diff)
Merge branch 'master' into talmdal_dev
Diffstat (limited to 'modules/gallery/helpers/access.php')
-rw-r--r--modules/gallery/helpers/access.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/gallery/helpers/access.php b/modules/gallery/helpers/access.php
index 29b981e8..7e8b079a 100644
--- a/modules/gallery/helpers/access.php
+++ b/modules/gallery/helpers/access.php
@@ -118,7 +118,12 @@ class access_Core {
*/
static function required($perm_name, $item) {
if (!self::can($perm_name, $item)) {
- self::forbidden();
+ if ($perm_name == "view") {
+ // Treat as if the item didn't exist, don't leak any information.
+ throw new Kohana_404_Exception();
+ } else {
+ self::forbidden();
+ }
}
}