diff options
-rw-r--r-- | FS/FS/cust_bill/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_bill/Search.pm b/FS/FS/cust_bill/Search.pm index 925938d82..ee5da3be8 100644 --- a/FS/FS/cust_bill/Search.pm +++ b/FS/FS/cust_bill/Search.pm @@ -276,7 +276,7 @@ sub search_sql_where { my @owed = ref($param->{owed}) ? @{ $param->{owed} } : ($param->{owed}); - push @search, map { s/^owed/$owed_sql/ } @owed; + push @search, map { s/^owed/$owed_sql/; $_ } @owed; } #open/net flags |