From: anuko Date: Fri, 13 Jan 2017 18:26:48 +0000 (+0000) Subject: Fixed ordering of projects. X-Git-Tag: timetracker_1.19-1~1606 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=06d053703b7c0ed744e93de417119cfa2a6a86e2;p=timetracker.git Fixed ordering of projects. --- diff --git a/WEB-INF/lib/ttTeamHelper.class.php b/WEB-INF/lib/ttTeamHelper.class.php index 3a5e50e1..8ff5583c 100644 --- a/WEB-INF/lib/ttTeamHelper.class.php +++ b/WEB-INF/lib/ttTeamHelper.class.php @@ -160,7 +160,7 @@ class ttTeamHelper { $mdb2 = getConnection(); $sql = "select id, name, description, tasks from tt_projects - where team_id = $team_id and status = 1 order by name"; + where team_id = $team_id and status = 1 order by upper(name)"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { @@ -178,7 +178,7 @@ class ttTeamHelper { $mdb2 = getConnection(); $sql = "select id, name, description, tasks from tt_projects - where team_id = $team_id and status = 0 order by name"; + where team_id = $team_id and status = 0 order by upper(name)"; $res = $mdb2->query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index a08b02ff..1d17c575 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
-
 Anuko Time Tracker 1.9.34.3548 | Copyright © Anuko | +  Anuko Time Tracker 1.9.34.3549 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve}