summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers/admin_maintenance.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-12-28 23:10:05 -0800
committerBharat Mediratta <bharat@menalto.com>2010-12-28 23:10:05 -0800
commitb42fcb9cda4dafdb9db86770f54965b3fb2fc7ab (patch)
treeef645fcb4a409cfd0c0eefcdb60c841b68d84258 /modules/gallery/controllers/admin_maintenance.php
parent9f3c6e4bee9f2ccae04b7b241c07845b9f233cfd (diff)
Use db::expr instead of "new Database_Expression". Resolves #1560.
Diffstat (limited to 'modules/gallery/controllers/admin_maintenance.php')
-rw-r--r--modules/gallery/controllers/admin_maintenance.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/controllers/admin_maintenance.php b/modules/gallery/controllers/admin_maintenance.php
index 7729d797..80247a0f 100644
--- a/modules/gallery/controllers/admin_maintenance.php
+++ b/modules/gallery/controllers/admin_maintenance.php
@@ -27,7 +27,7 @@ class Admin_Maintenance_Controller extends Admin_Controller {
->set("state", "stalled")
->where("done", "=", 0)
->where("state", "<>", "stalled")
- ->where(new Database_Expression("UNIX_TIMESTAMP(NOW()) - `updated` > 15"))
+ ->where(db::expr("UNIX_TIMESTAMP(NOW()) - `updated` > 15"))
->execute();
$stalled_count = $query->count();
if ($stalled_count) {