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/controllers/photos.php | |
| parent | d53f6d0e052fb455059170a311640fcd06cad798 (diff) | |
For consistency, use straight Kohana_404_Exception instead of the event system.
Diffstat (limited to 'modules/gallery/controllers/photos.php')
| -rw-r--r-- | modules/gallery/controllers/photos.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/controllers/photos.php b/modules/gallery/controllers/photos.php index 2a77aea4..f2d47eec 100644 --- a/modules/gallery/controllers/photos.php +++ b/modules/gallery/controllers/photos.php @@ -22,7 +22,7 @@ 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 - Event::run('system.404'); + throw new Kohana_404_Exception(); } access::required("view", $photo); |
