From bd032149ef619144d1a1c30cac4ddb6b7ccb5c2f Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 3 Jun 2013 14:49:27 -0700 Subject: [PATCH] admin web, manage app versions: show app versions in better order --- html/ops/manage_app_versions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/ops/manage_app_versions.php b/html/ops/manage_app_versions.php index 7c4e04c866..b867f2ae53 100644 --- a/html/ops/manage_app_versions.php +++ b/html/ops/manage_app_versions.php @@ -138,7 +138,7 @@ echo "ID # deprecated? \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++){