]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/ttClientHelper.class.php
Work in progress on project_required option (incomplete). Also started to integrate...
[timetracker.git] / WEB-INF / lib / ttClientHelper.class.php
index 3b7a9cd62959a6fe4fb34ec7b5aefe1a71abc6fa..c77dae006134beb6cb2075c9ca05bda413bf13ae 100644 (file)
@@ -60,7 +60,7 @@ class ttClientHelper {
     $mdb2 = getConnection();
 
     $sql = "select id, name from tt_clients
-      where team_id = $user->team_id and (status = 0 or status = 1) order by name";
+      where team_id = $user->team_id and (status = 0 or status = 1) order by upper(name)";
     $res = $mdb2->query($sql);
     if (!is_a($res, 'PEAR_Error')) {
       while ($val = $res->fetchRow()) {