diff options
author | Andy Staudacher <andy.st@gmail.com> | 2010-02-12 19:05:44 -0800 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2010-02-12 19:05:44 -0800 |
commit | 7e47c3b19f522344f7083ea0bd9524bfff1a0eb2 (patch) | |
tree | fbde83a8d489cbe8cbfb665691f50ed301b31fd9 /modules/gallery/helpers | |
parent | d53f6d0e052fb455059170a311640fcd06cad798 (diff) |
For consistency, use straight Kohana_404_Exception instead of the event system.
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r-- | modules/gallery/helpers/access.php | 2 |
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(); } |