diff options
| -rw-r--r-- | httemplate/edit/cust_main_county.html | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/httemplate/edit/cust_main_county.html b/httemplate/edit/cust_main_county.html index 510839d71..5d7f9e62e 100644 --- a/httemplate/edit/cust_main_county.html +++ b/httemplate/edit/cust_main_county.html @@ -21,7 +21,6 @@  my $conf = new FS::Conf;  </%once> -  <%init>  die "access denied" @@ -29,7 +28,8 @@ die "access denied"  my $taxnum;  if ( $cgi->param('error') ) { -  $cgi->param('taxnum') =~ /^(\d+)$/ or die 'error, but no taxnum'; +  $cgi->param('taxnum') =~ /^(\d+)$/ +    or die "no taxnum, but error: ". $cgi->param('error');    $taxnum = $1;  } else {    my($query) = $cgi->keywords; | 
