From 99a8d153cf8c3143313d8c47ef576144b23f815f Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Thu, 20 Nov 2014 19:49:06 -0500 Subject: Fix date due ordering on the dashboard, see #403 --- app/Controller/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Controller') diff --git a/app/Controller/App.php b/app/Controller/App.php index 2458800a..86b06076 100644 --- a/app/Controller/App.php +++ b/app/Controller/App.php @@ -51,7 +51,7 @@ class App extends Base { $limit = 10; - if (! in_array($order, array('tasks.id', 'project_name', 'title'))) { + if (! in_array($order, array('tasks.id', 'project_name', 'title', 'date_due'))) { $order = 'tasks.id'; $direction = 'ASC'; } -- cgit v1.2.3