Setup the overdue summary graph and issue list view

This commit is contained in:
Simon Holywell
2012-03-23 17:03:17 +00:00
parent 1d15d53eaa
commit 3a71d71ef8
3 changed files with 24 additions and 11 deletions

View File

@@ -218,7 +218,7 @@ GROUP BY uid";
) AS overdue,
( SELECT COUNT(*) FROM $sqlIssueTable
WHERE due_dtime >= NOW() AND status IN ($tags)
) AS in_date";
) AS undue";
$db = Pluf::db();
$dbData = $db->select($query);
return current($dbData);