Module: appdb Branch: master Commit: 6d372a8c42520994968639645b56dd930b826731 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=6d372a8c42520994968639645...
Author: Rosanne DiMesio dimesio@earthlink.net Date: Mon Jun 26 12:18:08 2017 -0500
viewbugs.php: order display by appName
Fixes bug 27807.
Signed-off-by: Rosanne DiMesio dimesio@earthlink.net Signed-off-by: Jeremy Newman jnewman@codeweavers.com
---
viewbugs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/viewbugs.php b/viewbugs.php index f9646da..a75ef30 100644 --- a/viewbugs.php +++ b/viewbugs.php @@ -26,7 +26,7 @@ $hResult = query_parameters("SELECT appFamily.description as appDescription, WHERE appFamily.appId = appVersion.appId and buglinks.versionId = appVersion.versionId AND buglinks.bug_id = '?' - ORDER BY versionName", $aClean['iBugId']); + ORDER BY appName, versionName", $aClean['iBugId']);
if(query_num_rows($hResult)) {