diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-11-26 20:25:32 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-11-26 20:25:32 -0800 |
commit | dee3ee81e2013f0b38e0f84123dec2ce12574bd7 (patch) | |
tree | e785c7e1878d9aa7af03d3fd1cd2890cb983a1be /modules/gallery/controllers/albums.php | |
parent | 3dd8bf245ea16fe1b9f1c27c4ad42d11d3cde1ee (diff) |
Database::orwhere() is now Database_Builder::or_where()
Diffstat (limited to 'modules/gallery/controllers/albums.php')
-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 431d98a0..32db48d4 100644 --- a/modules/gallery/controllers/albums.php +++ b/modules/gallery/controllers/albums.php @@ -130,7 +130,7 @@ class Albums_Controller extends Items_Controller { ->where("id", "<>", $album->id) ->and_open() ->where("name", "=", $form->edit_item->dirname->value) - ->orwhere("slug", "=", $form->edit_item->slug->value) + ->or_where("slug", "=", $form->edit_item->slug->value) ->close() ->get() ->current()) { |