Sort vendors by name

This commit is contained in:
Tony Lambregts
2005-01-02 16:44:10 +00:00
committed by WineHQ
parent 1d73be2cad
commit 4e7d079a21

View File

@@ -48,7 +48,7 @@ if ($_REQUEST['sub'])
} 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))