diff options
Diffstat (limited to 'core/controllers')
-rw-r--r-- | core/controllers/admin_maintenance.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/controllers/admin_maintenance.php b/core/controllers/admin_maintenance.php index cd1682cc..beb6cef7 100644 --- a/core/controllers/admin_maintenance.php +++ b/core/controllers/admin_maintenance.php @@ -60,9 +60,9 @@ class Admin_Maintenance_Controller extends Admin_Controller { $view->content = new View("admin_maintenance.html"); $view->content->task_definitions = $this->_get_task_definitions(); $view->content->running_tasks = - ORM::factory("task")->where("done", 0)->orderby("updated", "desc")->find_all(); + ORM::factory("task")->where("done", 0)->orderby("updated", "DESC")->find_all(); $view->content->finished_tasks = - ORM::factory("task")->where("done", 1)->orderby("updated", "desc")->find_all(); + ORM::factory("task")->where("done", 1)->orderby("updated", "DESC")->find_all(); $view->content->csrf = access::csrf_token(); print $view; } |