[freeside-commits] branch FREESIDE_3_BRANCH updated. 728ab2fda5b05b3021b62a3c5d7c4d97e97edcaa
Ivan
ivan at 420.am
Mon Aug 12 22:58:01 PDT 2013
The branch, FREESIDE_3_BRANCH has been updated
via 728ab2fda5b05b3021b62a3c5d7c4d97e97edcaa (commit)
from 5b22d57dddf428ea5ba400196a980c12d67ecc02 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 728ab2fda5b05b3021b62a3c5d7c4d97e97edcaa
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Aug 12 22:58:00 2013 -0700
search for cards with dashes too, RT#24428
diff --git a/FS/FS/cust_main/Search.pm b/FS/FS/cust_main/Search.pm
index 5c87f2e..590b706 100644
--- a/FS/FS/cust_main/Search.pm
+++ b/FS/FS/cust_main/Search.pm
@@ -374,7 +374,7 @@ sub smart_search {
( my $card_search = $nospace_search ) =~ s/\-//g;
$card_search =~ s/[x\*\.\_]/x/gi;
- if ( $nospace_search =~ /^[\dx]{15,16}$/i ) { #credit card search
+ if ( $card_search =~ /^[\dx]{15,16}$/i ) { #credit card search
( my $like_search = $card_search ) =~ s/x/_/g;
my $mask_search = FS::payinfo_Mixin->mask_payinfo('CARD', $card_search);
-----------------------------------------------------------------------
Summary of changes:
FS/FS/cust_main/Search.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list