[AppDB] Sort Vendors by name.

Tony Lambregts tony_lambregts at telusplanet.net
Sat Jan 1 21:11:18 CST 2005


Change Log: Sort Vendors by name.

Files changed: admin/adminVendors.php
-------------- next part --------------
Index: admin/adminVendors.php
===================================================================
RCS file: /home/wine/appdb/admin/adminVendors.php,v
retrieving revision 1.3
diff -u -r1.3 adminVendors.php
--- admin/adminVendors.php	2 Jan 2005 00:48:39 -0000	1.3
+++ admin/adminVendors.php	2 Jan 2005 03:07:11 -0000
@@ -48,7 +48,7 @@
 } else
 {
     //get available vendors
-    $sQuery = "SELECT * from vendor;";
+    $sQuery = "SELECT * FROM vendor ORDER BY vendorName, vendorId;";
     $hResult = query_appdb($sQuery);
 
     if(!$hResult || !mysql_num_rows($hResult))


More information about the wine-patches mailing list