diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-04-02 10:37:52 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-04-02 10:37:52 -0700 |
commit | f84937b2a6cc6ba63cdab177866b1417c32b1028 (patch) | |
tree | 945b3e0bb69355c264f43d5a83e2fde70fef9d98 /httemplate/elements | |
parent | 59db9d8aa66fe128a26e512c5172982e041c59ae (diff) | |
parent | c2ee6c5c4f274bbf86729cacd2fe011ea71f725d (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/city.html | 6 | ||||
-rw-r--r-- | httemplate/elements/tr-select-cust_tag.html | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/httemplate/elements/city.html b/httemplate/elements/city.html index f6d2b4bad..6a2142f29 100644 --- a/httemplate/elements/city.html +++ b/httemplate/elements/city.html @@ -107,7 +107,11 @@ function <% $pre %>county_changed(what, callback) {} <% $text_style %> > -% if ( !$disable_select ) { +% if ( $disable_select ) { +%# avoid JS errors +<INPUT TYPE="hidden" ID="city_select"> +% } +% else { <SELECT NAME = "<%$pre%>city_select" ID = "<%$pre%>city_select" diff --git a/httemplate/elements/tr-select-cust_tag.html b/httemplate/elements/tr-select-cust_tag.html index b2b6d967e..5312644ef 100644 --- a/httemplate/elements/tr-select-cust_tag.html +++ b/httemplate/elements/tr-select-cust_tag.html @@ -28,7 +28,7 @@ my $cgi = $opt{'cgi'}; my $is_report = $opt{'is_report'}; my @curr_tagnum = (); -if ( $cgi->param('error') ) { +if ( $cgi && $cgi->param('error') ) { @curr_tagnum = $cgi->param('tagnum'); } elsif ( $opt{'custnum'} ) { @curr_tagnum = map $_->tagnum, |