diff options
author | ivan <ivan> | 2003-05-11 22:53:50 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-05-11 22:53:50 +0000 |
commit | c366f2a04c215caebfeaf8ca314d2cff86fa9b66 (patch) | |
tree | 3bc24ece3142a6b793cbcf370e5f9dec31864a4e | |
parent | 6360ce64700953f0665aad92d009eaa7401ebbf0 (diff) |
patch from Richard Siddall for strict vars
-rwxr-xr-x | httemplate/search/cust_pkg.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index 3cc520fa8..538edf3f1 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -93,7 +93,7 @@ if ( $cgi->param('magic') && $cgi->param('magic') eq 'bill' ) { AND cust_svc.svcpart = pkg_svc.svcpart AND cust_pkg.pkgpart = pkg_svc.pkgpart GROUP BY cust_svc.pkgnum,cust_svc.svcpart"; - $sth = dbh->prepare($query) or die dbh->errstr. " preparing $query"; + my $sth = dbh->prepare($query) or die dbh->errstr. " preparing $query"; $sth->execute or die "Error executing \"$query\": ". $sth->errstr; |