diff options
author | ivan <ivan> | 2001-09-11 10:05:30 +0000 |
---|---|---|
committer | ivan <ivan> | 2001-09-11 10:05:30 +0000 |
commit | 34678d474a3710a38e42fd681607fe98edb56658 (patch) | |
tree | 1fb26c740f45be5607166d337e29d160ae138f55 /httemplate | |
parent | 89301379ac6f1e2ebab203e458849001d3f8fb49 (diff) |
s/die/ediot/
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/process/quick-cust_pkg.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/edit/process/quick-cust_pkg.cgi b/httemplate/edit/process/quick-cust_pkg.cgi index ff0c5b229..c4f5172ad 100644 --- a/httemplate/edit/process/quick-cust_pkg.cgi +++ b/httemplate/edit/process/quick-cust_pkg.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: quick-cust_pkg.cgi,v 1.2 2001-09-11 09:56:27 ivan Exp $ --> +#<!-- $Id: quick-cust_pkg.cgi,v 1.3 2001-09-11 10:05:30 ivan Exp $ --> use strict; use vars qw( $cgi $custnum $pkgpart $error ); #@remove_pkgnums @pkgparts @@ -15,10 +15,10 @@ $error = ''; #untaint custnum $cgi->param('custnum') =~ /^(\d+)$/ - or die 'illegal custnum '. $cgi->param('custnum'); + or eidiot 'illegal custnum '. $cgi->param('custnum'); $custnum = $1; $cgi->param('pkgpart') =~ /^(\d+)$/ - or die 'illegal pkgpart '. $cgi->param('pkgpart'); + or eidiot 'illegal pkgpart '. $cgi->param('pkgpart'); $pkgpart = $1; my @cust_pkg = (); |