From: <te...@us...> - 2016-05-06 09:08:17
|
Revision: 7510 http://sourceforge.net/p/web-erp/reponame/7510 Author: tehonu Date: 2016-05-06 09:08:15 +0000 (Fri, 06 May 2016) Log Message: ----------- Use name as order by field, as id is not visible to user Modified Paths: -------------- trunk/Departments.php Modified: trunk/Departments.php =================================================================== --- trunk/Departments.php 2016-05-06 03:29:59 UTC (rev 7509) +++ trunk/Departments.php 2016-05-06 09:08:15 UTC (rev 7510) @@ -159,7 +159,7 @@ description, authoriser FROM departments - ORDER BY departmentid"; + ORDER BY description"; $ErrMsg = _('There are no departments created'); $result = DB_query($sql,$ErrMsg); |