Changed to sort the list of projects by name as more natural than by short name.

master
Loïc d'Anterroches 2010-12-23 11:31:52 +01:00
parent 80e965a904
commit 0739b856e0
1 changed files with 3 additions and 3 deletions

View File

@ -317,10 +317,10 @@ class IDF_Views
if ($user->isAnonymous()) {
$sql = sprintf('%s=%s', $db->qn('private'), $false);
return Pluf::factory('IDF_Project')->getList(array('filter'=> $sql,
'order' => 'shortname ASC'));
'order' => 'name ASC'));
}
if ($user->administrator) {
return Pluf::factory('IDF_Project')->getList(array('order' => 'shortname ASC'));
return Pluf::factory('IDF_Project')->getList(array('order' => 'name ASC'));
}
// grab the list of projects where the user is admin, member
// or authorized
@ -341,6 +341,6 @@ class IDF_Views
$sql .= sprintf(' OR id IN (%s)', implode(', ', $ids));
}
return Pluf::factory('IDF_Project')->getList(array('filter' => $sql,
'order' => 'shortname ASC'));
'order' => 'name ASC'));
}
}