diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-12-28 23:10:05 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-12-28 23:10:05 -0800 |
commit | b42fcb9cda4dafdb9db86770f54965b3fb2fc7ab (patch) | |
tree | ef645fcb4a409cfd0c0eefcdb60c841b68d84258 /modules/comment/controllers | |
parent | 9f3c6e4bee9f2ccae04b7b241c07845b9f233cfd (diff) |
Use db::expr instead of "new Database_Expression". Resolves #1560.
Diffstat (limited to 'modules/comment/controllers')
-rw-r--r-- | modules/comment/controllers/admin_manage_comments.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/controllers/admin_manage_comments.php b/modules/comment/controllers/admin_manage_comments.php index 49bd85d5..ec876fc4 100644 --- a/modules/comment/controllers/admin_manage_comments.php +++ b/modules/comment/controllers/admin_manage_comments.php @@ -25,7 +25,7 @@ class Admin_Manage_Comments_Controller extends Admin_Controller { db::build() ->delete("comments") ->where("state", "IN", array("deleted", "spam")) - ->where("updated", "<", new Database_Expression("UNIX_TIMESTAMP() - 86400 * 7")) + ->where("updated", "<", db::expr("UNIX_TIMESTAMP() - 86400 * 7")) ->execute(); // Redirect to the appropriate queue |