summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-12-01 00:08:12 -0800
committerBharat Mediratta <bharat@menalto.com>2009-12-01 00:08:12 -0800
commit883fda313d3d7e76ae98cba7735c4c474b6f517c (patch)
tree703d352c17c92698d8a0d00601eeb100121ba291
parent852653ef2415dc070c27ce151ed399525ddfa5a0 (diff)
Fix a typo that was breaking the home page (doh!)
$this->_show() -> $this->show()
-rw-r--r--modules/gallery/controllers/albums.php2
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) {