diff options
| author | Andy Staudacher <andy.st@gmail.com> | 2010-02-12 19:05:44 -0800 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-14 07:15:57 -0800 |
| commit | 8412aeb1337c4060a77af7c94441ca8cbc6bb4ad (patch) | |
| tree | e203a83ad04861c675fb2ed6f23fc5edf41d0f86 /modules/gallery/controllers/albums.php | |
| parent | e88e976fc4255d323a1f5919453604ecf467ed0d (diff) | |
For consistency, use straight Kohana_404_Exception instead of the event system.
Diffstat (limited to 'modules/gallery/controllers/albums.php')
| -rw-r--r-- | modules/gallery/controllers/albums.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/controllers/albums.php b/modules/gallery/controllers/albums.php index 1cc3b1ec..036dade0 100644 --- a/modules/gallery/controllers/albums.php +++ b/modules/gallery/controllers/albums.php @@ -26,7 +26,7 @@ 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 - Event::run('system.404'); + throw new Kohana_404_Exception(); } access::required("view", $album); |
