projects
/
freeside.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f3d146
)
at least show an error for bad pkgparts instead of a hang, RT#9578
author
ivan
<ivan>
Wed, 11 Aug 2010 21:53:56 +0000
(21:53 +0000)
committer
ivan
<ivan>
Wed, 11 Aug 2010 21:53:56 +0000
(21:53 +0000)
FS/FS/cust_main/Import.pm
patch
|
blob
|
history
diff --git
a/FS/FS/cust_main/Import.pm
b/FS/FS/cust_main/Import.pm
index
901ff18
..
e2165a0
100644
(file)
--- a/
FS/FS/cust_main/Import.pm
+++ b/
FS/FS/cust_main/Import.pm
@@
-328,6
+328,12
@@
sub batch_import {
tie my %hash, 'Tie::RefHash'; #this part is important
if ( $cust_pkg{'pkgpart'} ) {
+
+ unless ( $cust_pkg{'pkgpart'} =~ /^\d+$/ ) {
+ $dbh->rollback if $oldAutoCommit;
+ return 'illegal pkgpart: '. $cust_pkg{'pkgpart'};
+ }
+
my $cust_pkg = new FS::cust_pkg ( \%cust_pkg );
my @svc_x = ();