From: justdave%bugzilla.org <> Date: Thu, 15 Jul 2004 02:11:34 +0000 (+0000) Subject: Bug 251427: put products in alphabetical order on the create attachment status page. X-Git-Tag: bugzilla-2.16.7~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27ef13d06c05e941dc9066502be936ffeacbf19b;p=thirdparty%2Fbugzilla.git Bug 251427: put products in alphabetical order on the create attachment status page. r= vladd, a= justdave --- diff --git a/editattachstatuses.cgi b/editattachstatuses.cgi index 910379b99c..f1664fd7c0 100755 --- a/editattachstatuses.cgi +++ b/editattachstatuses.cgi @@ -212,7 +212,7 @@ sub create # Display a form for creating a new attachment status flag. # Retrieve a list of products to which the attachment status may apply. - SendSQL("SELECT product FROM products"); + SendSQL("SELECT product FROM products ORDER BY product"); my @products; push(@products, FetchSQLData()) while MoreSQLData();