gforge-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gforge-commits] gforge/www/include html.php,1.31,1.32


From: cbayle
Subject: [Gforge-commits] gforge/www/include html.php,1.31,1.32
Date: Thu, 15 Apr 2004 03:32:42 -0500

Update of /cvsroot/gforge/gforge/www/include
In directory db.perdue.net:/tmp/cvs-serv12396/www/include

Modified Files:
        html.php 
Log Message:
Order country by name not by code


Index: html.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/include/html.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- html.php    25 Mar 2004 23:29:55 -0000      1.31
+++ html.php    15 Apr 2004 08:32:35 -0000      1.32
@@ -161,7 +161,7 @@
  * @return     string  The html select box.
  */
 function html_get_ccode_popup ($title='ccode',$selected='xzxz') {
-       $res=db_query("SELECT ccode,country_name FROM country_code ORDER BY 
ccode");
+       $res=db_query("SELECT ccode,country_name FROM country_code ORDER BY 
country_name");
        return html_build_select_box ($res,$title,$selected,false);
 }
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]