From: Bill Erickson Date: Wed, 17 Aug 2016 12:45:23 +0000 (-0400) Subject: JBAS-1503 Avoid setting SILENTPOSTURL (TLS issues) X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3f202b8d8da34d6cf8f03848627fd1e591ccec1a;p=working%2FEvergreen.git JBAS-1503 Avoid setting SILENTPOSTURL (TLS issues) Force PP to use evgmobile via PP manager since it is not requiring the use of TLS 1.2. In other words, avoid setting the SILENTPOSTURL from the apache host. Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/PayflowHosted.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/PayflowHosted.pm index a80b646429..80f4923bd0 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/PayflowHosted.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/PayflowHosted.pm @@ -75,7 +75,8 @@ sub create_xact_token { $pf_params{CANCELURL} = "$host/eg/opac/biblio/main_fines"; $pf_params{RETURNURL} = "$host/eg/opac/payflow/pay_receipt/$tokenid"; $pf_params{ERRORURL} = "$host/eg/opac/biblio/main_fines/$tokenid"; - $pf_params{SILENTPOSTURL} = "$host/eg/opac/payflow/silent_post"; + # KCLS uses evgmobile for now to avoid TLS 1.2. REVISIT. + #$pf_params{SILENTPOSTURL} = "$host/eg/opac/payflow/silent_post"; } my $api_server = $live_api_server;