summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers/access.php
diff options
context:
space:
mode:
authorAndy Staudacher <andy.st@gmail.com>2010-02-12 19:05:44 -0800
committerTim Almdal <tnalmdal@shaw.ca>2010-02-14 07:15:57 -0800
commit8412aeb1337c4060a77af7c94441ca8cbc6bb4ad (patch)
treee203a83ad04861c675fb2ed6f23fc5edf41d0f86 /modules/gallery/helpers/access.php
parente88e976fc4255d323a1f5919453604ecf467ed0d (diff)
For consistency, use straight Kohana_404_Exception instead of the event system.
Diffstat (limited to 'modules/gallery/helpers/access.php')
-rw-r--r--modules/gallery/helpers/access.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/access.php b/modules/gallery/helpers/access.php
index c4c100ca..7e8b079a 100644
--- a/modules/gallery/helpers/access.php
+++ b/modules/gallery/helpers/access.php
@@ -120,7 +120,7 @@ class access_Core {
if (!self::can($perm_name, $item)) {
if ($perm_name == "view") {
// Treat as if the item didn't exist, don't leak any information.
- Event::run('system.404');
+ throw new Kohana_404_Exception();
} else {
self::forbidden();
}