From: <te...@us...> - 2015-08-04 07:40:24
|
Revision: 7334 http://sourceforge.net/p/web-erp/reponame/7334 Author: tehonu Date: 2015-08-04 07:40:21 +0000 (Tue, 04 Aug 2015) Log Message: ----------- Added ORDER BY in area selection. Reported by Tim. Modified Paths: -------------- trunk/CustomerBranches.php Modified: trunk/CustomerBranches.php =================================================================== --- trunk/CustomerBranches.php 2015-08-04 05:58:25 UTC (rev 7333) +++ trunk/CustomerBranches.php 2015-08-04 07:40:21 UTC (rev 7334) @@ -773,7 +773,7 @@ // DB_data_seek($result,0);//by thumb } - $SQL = "SELECT areacode, areadescription FROM areas"; + $SQL = "SELECT areacode, areadescription FROM areas ORDER BY areadescription"; $result = DB_query($SQL); if(DB_num_rows($result)==0) { echo '</table>'; |