diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-12-01 00:08:12 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-12-01 00:08:12 -0800 |
commit | 883fda313d3d7e76ae98cba7735c4c474b6f517c (patch) | |
tree | 703d352c17c92698d8a0d00601eeb100121ba291 /modules | |
parent | 852653ef2415dc070c27ce151ed399525ddfa5a0 (diff) |
Fix a typo that was breaking the home page (doh!)
$this->_show() -> $this->show()
Diffstat (limited to 'modules')
-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 0cfee7cd..3c1a0adf 100644 --- a/modules/gallery/controllers/albums.php +++ b/modules/gallery/controllers/albums.php @@ -19,7 +19,7 @@ */ class Albums_Controller extends Items_Controller { public function index() { - $this->_show(ORM::factory("item", 1)); + $this->show(ORM::factory("item", 1)); } public function show($album) { |