[freeside-commits] branch FREESIDE_3_BRANCH updated. f77e374df4ab10b25cb265e260bc71751d3ec52e

Ivan ivan at 420.am
Fri Feb 24 08:29:23 PST 2017


The branch, FREESIDE_3_BRANCH has been updated
       via  f77e374df4ab10b25cb265e260bc71751d3ec52e (commit)
      from  34c0d2df4fc583073c164fc60653b485a4f4737f (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 f77e374df4ab10b25cb265e260bc71751d3ec52e
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Fri Feb 24 08:29:21 2017 -0800

    fix fallout from is_tokenized optimizations preventing cards from running, RT#74657

diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm
index cfe93a9..8cccd18 100644
--- a/FS/FS/cust_main.pm
+++ b/FS/FS/cust_main.pm
@@ -1970,7 +1970,7 @@ sub check {
 
     my $cardtype = $self->paycardtype;
     if ( $payinfo =~ /^99\d{14}$/ ) {
-      $self->('is_tokenized', 'Y'); #so we don't try to do it again
+      $self->set('is_tokenized', 'Y'); #so we don't try to do it again
       if ( $self->paymask =~ /^\d+x/ ) {
         $cardtype = cardtype($self->paymask);
       } else {

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/cust_main.pm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




More information about the freeside-commits mailing list