fix cdrbatch problem, RT#8906
authorivan <ivan>
Wed, 23 Jun 2010 20:51:34 +0000 (20:51 +0000)
committerivan <ivan>
Wed, 23 Jun 2010 20:51:34 +0000 (20:51 +0000)
httemplate/misc/cdr-post.cgi

index d9e42fa..46d9424 100644 (file)
@@ -10,6 +10,7 @@ die "access denied"
 
 my $error = '';
 my $cdr_batch;
+my $cdrbatch = '';
 
 {
 
@@ -29,7 +30,7 @@ my $cdr_batch;
 
   my $csv = new Text::CSV_XS or die Text::CSV->error_diag;
 
-  my $cdrbatch = time2str('post-%Y/%m/%d-%T'. "-$$-". rand() * 2**32, time);
+  $cdrbatch = time2str('post-%Y/%m/%d-%T'. "-$$-". rand() * 2**32, time);
   $cdr_batch = new FS::cdr_batch { 'cdrbatch' => $cdrbatch };
   $error = $cdr_batch->insert and last;