diff options
author | ivan <ivan> | 2009-10-29 23:37:50 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-10-29 23:37:50 +0000 |
commit | cccd6a6039ed390c95f1989f8ac8af259ffc2061 (patch) | |
tree | 70bcca979b93dc18835828b9abcc0afc6bb62f77 | |
parent | 76508c664857bb69f2afcefad18a10e853b84ce9 (diff) |
friendlier error message when you select nothing, RT#6445
-rw-r--r-- | httemplate/edit/bulk-cust_main_county.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/bulk-cust_main_county.html b/httemplate/edit/bulk-cust_main_county.html index bb57fc5d3..93d9444b8 100644 --- a/httemplate/edit/bulk-cust_main_county.html +++ b/httemplate/edit/bulk-cust_main_county.html @@ -85,7 +85,7 @@ if ( $cgi->param('error') ) { } else { my($query) = $cgi->keywords; $query =~ /^([\d,]+)$/ - or die 'Nothing selected'; #XXX better error when nothing selected + or $m->comp('/elements/errorpage-popup.html', 'Nothing selected'); @taxnum = split(',', $1); } |