admin web, manage app versions: show app versions in better order

This commit is contained in:
David Anderson 2013-06-03 14:49:27 -07:00
parent faa490dd7e
commit bd032149ef
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ echo "<TR><TH>ID #</TH>
<TH>deprecated?</TH>
</TR>\n";
$q="SELECT * FROM app_version ORDER BY appid, version_num, platformid";
$q="SELECT * FROM app_version ORDER BY appid, platformid, plan_class, version_num";
$result = mysql_query($q);
$Nrow=mysql_num_rows($result);
for($j=1;$j<=$Nrow;$j++){