[freeside-commits] branch master updated. 71def0ba19307163d8a8f6fcd8bc4bb759a336a3
Ivan
ivan at 420.am
Mon Nov 12 14:37:02 PST 2012
The branch, master has been updated
via 71def0ba19307163d8a8f6fcd8bc4bb759a336a3 (commit)
from c444794974ce5f9512d5f323805db58176f26ad3 (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 71def0ba19307163d8a8f6fcd8bc4bb759a336a3
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Nov 12 14:36:57 2012 -0800
remove ancient referer
diff --git a/FS/FS/cust_main/Billing_Realtime.pm b/FS/FS/cust_main/Billing_Realtime.pm
index 7103e61..80063de 100644
--- a/FS/FS/cust_main/Billing_Realtime.pm
+++ b/FS/FS/cust_main/Billing_Realtime.pm
@@ -300,7 +300,10 @@ sub _bop_content {
? $options->{country}
: $self->country;
- $content{referer} = 'http://cleanwhisker.420.am/'; #XXX fix referer :/
+ #3.0 is a good a time as any to get rid of this... add a config to pass it
+ # if anyone still needs it
+ #$content{referer} = 'http://cleanwhisker.420.am/';
+
$content{phone} = $self->daytime || $self->night;
my $currency = $conf->exists('business-onlinepayment-currency')
@@ -1233,7 +1236,11 @@ sub realtime_botpp_capture {
'amount' => $cust_pay_pending->paid,
#'invoice_number' => $options{'invnum'},
'customer_id' => $self->custnum,
- 'referer' => 'http://cleanwhisker.420.am/',
+
+ #3.0 is a good a time as any to get rid of this... add a config to pass it
+ # if anyone still needs it
+ #'referer' => 'http://cleanwhisker.420.am/',
+
'reference' => $cust_pay_pending->paypendingnum,
'email' => $email,
'phone' => $self->daytime || $self->night,
@@ -1431,7 +1438,10 @@ sub realtime_refund_bop {
'password' => $password,
'order_number' => $order_number,
'amount' => $amount,
- 'referer' => 'http://cleanwhisker.420.am/', #XXX fix referer :/
+
+ #3.0 is a good a time as any to get rid of this... add a config to pass it
+ # if anyone still needs it
+ #'referer' => 'http://cleanwhisker.420.am/',
);
$content{authorization} = $auth
if length($auth); #echeck/ACH transactions have an order # but no auth
-----------------------------------------------------------------------
Summary of changes:
FS/FS/cust_main/Billing_Realtime.pm | 16 +++++++++++++---
1 files changed, 13 insertions(+), 3 deletions(-)
More information about the freeside-commits
mailing list