$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')) {
$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')) {