[freeside-commits] branch FREESIDE_4_BRANCH updated. c39471b25c33e345e79034dc43ad9807d2e6d57d
Mitch Jackson
mitch at freeside.biz
Thu Jul 26 16:33:49 PDT 2018
The branch, FREESIDE_4_BRANCH has been updated
via c39471b25c33e345e79034dc43ad9807d2e6d57d (commit)
from c7c78cca9e17e61c3626f1fd70bb736090c08c5a (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 c39471b25c33e345e79034dc43ad9807d2e6d57d
Author: Mitch Jackson <mitch at freeside.biz>
Date: Thu Jul 26 17:53:33 2018 -0500
RT# 80624 Selfservice workaround for Bug on Win10 Edge Browser
diff --git a/fs_selfservice/FS-SelfService/cgi/selfservice.cgi b/fs_selfservice/FS-SelfService/cgi/selfservice.cgi
index 6cf264c08..3dc69e142 100755
--- a/fs_selfservice/FS-SelfService/cgi/selfservice.cgi
+++ b/fs_selfservice/FS-SelfService/cgi/selfservice.cgi
@@ -726,9 +726,9 @@ sub payment_results {
$cgi->param('paycvv') =~ /^\s*(.{0,4})\s*$/ or die "illegal CVV2";
my $paycvv = $1;
- $cgi->param('month') =~ /^(\d{2})$/ or die "illegal month";
+ $cgi->param('month') =~ /^(\d{2})/ or die "illegal month";
my $month = $1;
- $cgi->param('year') =~ /^(\d{4})$/ or die "illegal year";
+ $cgi->param('year') =~ /^(\d{4})/ or die "illegal year";
my $year = $1;
$cgi->param('payname') =~ /^(.{0,80})$/ or die "illegal payname";
@@ -1325,5 +1325,3 @@ sub include {
);
}
-
-
-----------------------------------------------------------------------
Summary of changes:
fs_selfservice/FS-SelfService/cgi/selfservice.cgi | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
More information about the freeside-commits
mailing list