summaryrefslogtreecommitdiff
path: root/httemplate/edit
diff options
context:
space:
mode:
authorivan <ivan>2011-02-09 04:48:21 +0000
committerivan <ivan>2011-02-09 04:48:21 +0000
commit84cb76fc346c721d87fa42515cd0780a01c0a686 (patch)
tree8cb91217faf1030f015c60c1c322ff98fa707b8d /httemplate/edit
parente0914b6ff8d2def6b5b62eb1106d3c560ca21df9 (diff)
improve error message when splitting taxclasses and there aren't any yet, RT#11144
Diffstat (limited to 'httemplate/edit')
-rwxr-xr-xhttemplate/edit/process/cust_main_county-expand.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/process/cust_main_county-expand.cgi b/httemplate/edit/process/cust_main_county-expand.cgi
index 9984b08fa..a10827621 100755
--- a/httemplate/edit/process/cust_main_county-expand.cgi
+++ b/httemplate/edit/process/cust_main_county-expand.cgi
@@ -22,7 +22,7 @@ if ( $cgi->param('taxclass') ) {
or die dbh->errstr;
$sth->execute or die $sth->errstr;
@expansion = map $_->[0], @{$sth->fetchall_arrayref};
- die "no taxclasses - add one first" unless @expansion;#XXX better err handling
+ errorpage "No taxclasses - add one first" unless @expansion;
} else {
@expansion = split /[\n\r]{1,2}/, $cgi->param('expansion');