diff options
author | Mark Wells <mark@freeside.biz> | 2016-08-11 16:16:18 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-08-11 16:16:18 -0700 |
commit | 2787aff7551116a223b4dea8bb144c1d03452d01 (patch) | |
tree | 426b35cd86800f136fd61e1a9d59b49d38142aa0 | |
parent | 267fab684da71cbe17dcd78d16283cb9b0f8064f (diff) |
skip paycardtype upgrades on 3.x, since we don't use it yet, #71291
-rw-r--r-- | FS/FS/cust_pay.pm | 4 | ||||
-rw-r--r-- | FS/FS/cust_refund.pm | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm index 04aac4e7d..d45d2e397 100644 --- a/FS/FS/cust_pay.pm +++ b/FS/FS/cust_pay.pm @@ -1248,9 +1248,9 @@ sub _upgrade_data { #class method } ### - # set paycardtype + # don't set paycardtype until 4.x ### - $class->upgrade_set_cardtype; + #$class->upgrade_set_cardtype; } diff --git a/FS/FS/cust_refund.pm b/FS/FS/cust_refund.pm index e26121b77..4affb151a 100644 --- a/FS/FS/cust_refund.pm +++ b/FS/FS/cust_refund.pm @@ -522,7 +522,9 @@ sub _upgrade_data { # class method $class->_upgrade_otaker(%opts); local $ignore_empty_reasonnum = 1; - $class->upgrade_set_cardtype; + + # don't set paycardtype until 4.x + #$class->upgrade_set_cardtype; } =back |