diff options
Diffstat (limited to 'core/controllers/album.php')
-rw-r--r-- | core/controllers/album.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/controllers/album.php b/core/controllers/album.php index 788ff9e2..d6b457d6 100644 --- a/core/controllers/album.php +++ b/core/controllers/album.php @@ -20,7 +20,7 @@ class Album_Controller extends Template_Controller { public $template = "page.html"; - public function View($id) { + public function view($id) { $item = ORM::factory("item")->where("id", $id)->find(); if (empty($item->id)) { return Kohana::show_404(); |