summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2001-10-30 15:42:33 +0000
committerivan <ivan>2001-10-30 15:42:33 +0000
commit57a1412bb70af3fdd7e3acd9e487c66260105776 (patch)
tree792c68b8bb698fbead7b95fc3bee19c47c477bba
parentef2e9712fbb5b4b1c5a681530c202498204220d8 (diff)
put default country up top
-rwxr-xr-xhttemplate/edit/cust_main.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi
index 0a10c7c..cfd99c8 100755
--- a/httemplate/edit/cust_main.cgi
+++ b/httemplate/edit/cust_main.cgi
@@ -1,5 +1,5 @@
<%
-#<!-- $Id: cust_main.cgi,v 1.11 2001-10-30 15:41:00 ivan Exp $ -->
+#<!-- $Id: cust_main.cgi,v 1.12 2001-10-30 15:42:33 ivan Exp $ -->
use vars qw( $cgi $custnum $action $cust_main $p1 @agents $agentnum
$last $first $ss $company $address1 $address2 $city $zip
@@ -183,7 +183,7 @@ $cust_main->country( $countrydefault ) unless $cust_main->country;
$cust_main->state( $conf->config('statedefault') || 'CA' )
unless $cust_main->state || $cust_main->country ne 'US';
foreach ( sort {
- ( $a->country eq $countrydefault ) <=> ( $b->country eq $countrydefault )
+ ( $b->country eq $countrydefault ) <=> ( $a->country eq $countrydefault )
or $a->country cmp $b->country
or $a->state cmp $b->state
or $a->county cmp $b->county