diff options
author | ivan <ivan> | 2010-08-11 21:54:24 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-08-11 21:54:24 +0000 |
commit | 9ce4ac30dbe0c3213836081ed44f5f515c59a338 (patch) | |
tree | 33d8714f7c95fabfd78a39096511cbac9bc2c74b | |
parent | dc31464eeff58f3136ed5fe905d537874d4f3d65 (diff) |
at least show an error for bad pkgparts instead of a hang, RT#9578
-rw-r--r-- | FS/FS/cust_main/Import.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/FS/FS/cust_main/Import.pm b/FS/FS/cust_main/Import.pm index 901ff18ae..e2165a096 100644 --- 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 = (); |