fix 30/60/90/120 browses
authorivan <ivan>
Sun, 7 Jul 2002 14:18:58 +0000 (14:18 +0000)
committerivan <ivan>
Sun, 7 Jul 2002 14:18:58 +0000 (14:18 +0000)
httemplate/search/cust_bill.cgi

index 1ce25d5..6b61589 100755 (executable)
@@ -54,7 +54,7 @@ if ( $cgi->keywords ) {
     $orderby = "ORDER BY cust_bill.invnum";
     #@cust_bill =
     #  grep $_->owed != 0 && $_->_date < time - $open, qsearch('cust_bill', {} );
-    push @where, "0 != $owed".
+    push @where, "0 != $owed",
                  "cust_bill._date < ". (time-$open);
   } elsif ( $query =~ /^OPEN(\d+)_date$/ ) {
     my $open = $1 * 86400;
@@ -62,7 +62,7 @@ if ( $cgi->keywords ) {
     $orderby = "ORDER BY cust_bill._date";
     #@cust_bill =
     #  grep $_->owed != 0 && $_->_date < time - $open, qsearch('cust_bill', {} );
-    push @where, "0 != $owed".
+    push @where, "0 != $owed",
                  "cust_bill._date < ". (time-$open);
 
   } elsif ( $query =~ /^OPEN(\d+)_custnum$/ ) {
@@ -71,7 +71,7 @@ if ( $cgi->keywords ) {
     $orderby = "ORDER BY cust_bill.custnum";
     #@cust_bill =
     #  grep $_->owed != 0 && $_->_date < time - $open, qsearch('cust_bill', {} );
-    push @where, "0 != $owed".
+    push @where, "0 != $owed",
                  "cust_bill._date < ". (time-$open);
   } else {
     die "unknown query string $query";