From: ivan Date: Thu, 13 Mar 2008 09:28:46 +0000 (+0000) Subject: yow. very sleep deprived. remove the infinite loop rather than add one. X-Git-Tag: freeside_1_7_3rc1~63 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=a471290e8b0f948e43149a9fc113ab809afd0387;p=freeside.git yow. very sleep deprived. remove the infinite loop rather than add one. --- diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm index 0507276f4..358dfdc3d 100644 --- a/FS/FS/cust_pay.pm +++ b/FS/FS/cust_pay.pm @@ -687,19 +687,15 @@ sub _upgrade_data { #class method my $count = 0; my $lastprog = 0; - my %seen = (); - while (1) { - my $cust_pay = qsearchs( { + my @cust_pay = qsearch( { 'table' => 'cust_pay', 'hashref' => {}, 'extra_sql' => $where, - 'order_by' => 'ORDER BY paynum LIMIT 1', - } ); - - return unless $cust_pay; + 'order_by' => 'ORDER BY paynum', + } ); - next if $seen{$cust_pay->paynum}++; + foreach my $cust_pay (@cust_pay) { my $h_cust_pay = $cust_pay->h_search('insert'); if ( $h_cust_pay ) {