fix startdate in sansay CDR import (and skip blank lines), RT#6801
[freeside.git] / FS / FS / Record.pm
index e02a2cf..b05fb3e 100644 (file)
@@ -1767,6 +1767,8 @@ sub batch_import {
       last unless scalar(@buffer);
       $line = shift(@buffer);
 
+      next if $line =~ /^\s*$/; #skip empty lines
+
       $parser->parse($line) or do {
         $dbh->rollback if $oldAutoCommit;
         return "can't parse: ". $parser->error_input();