summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers/items.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-11-25 13:49:40 -0800
committerBharat Mediratta <bharat@menalto.com>2009-11-25 13:51:33 -0800
commit4a417708f00b1ebd5865c8075bb36b7fc0f14756 (patch)
tree6dbc5a9f5ba6adf16d6ea78c991723d97038156b /modules/gallery/controllers/items.php
parent33b1d4b7efa8c6b825908f48c7e744578e7f9ae6 (diff)
Kohana::show_404() -> throw new Kohana_404_Exception()
Diffstat (limited to 'modules/gallery/controllers/items.php')
-rw-r--r--modules/gallery/controllers/items.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/controllers/items.php b/modules/gallery/controllers/items.php
index bf1f80d4..86782469 100644
--- a/modules/gallery/controllers/items.php
+++ b/modules/gallery/controllers/items.php
@@ -21,7 +21,7 @@ class Items_Controller extends Controller {
public function __call($function, $args) {
$item = ORM::factory("item", (int)$function);
if (!$item->loaded()) {
- return Kohana::show_404();
+ throw new Kohana_404_Exception();
}
// Redirect to the more specific resource type, since it will render
// differently. We could also just delegate here, but it feels more appropriate