]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 251427: put products in alphabetical order on the create attachment status page.
authorjustdave%bugzilla.org <>
Thu, 15 Jul 2004 02:11:34 +0000 (02:11 +0000)
committerjustdave%bugzilla.org <>
Thu, 15 Jul 2004 02:11:34 +0000 (02:11 +0000)
r= vladd, a= justdave

editattachstatuses.cgi

index 910379b99cde80b0a1bf7a715bf2628ce166ab90..f1664fd7c00b2be4db208b7b362656b5d0a9cdaf 100755 (executable)
@@ -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();