Database::orwhere() is now Database_Builder::or_where()

This commit is contained in:
Bharat Mediratta
2009-11-26 20:25:32 -08:00
parent 3dd8bf245e
commit dee3ee81e2
11 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ class exif_task_Core {
->where("type", "=", "photo")
->and_open()
->where("exif_records.item_id", "=", null)
->orwhere("exif_records.dirty", "=", 1)
->or_where("exif_records.dirty", "=", 1)
->close()
->find_all() as $item) {
// The query above can take a long time, so start the timer after its done