[freeside-commits] branch FREESIDE_3_BRANCH updated. effcfd8cb4d1276d924e4c32a5bc54a1f99f290f
Mitch Jackson
mitch at freeside.biz
Thu Jul 26 16:40:12 PDT 2018
The branch, FREESIDE_3_BRANCH has been updated
via effcfd8cb4d1276d924e4c32a5bc54a1f99f290f (commit)
from 815773c7df8e691f6cc15a8de46120efccd75bf5 (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 effcfd8cb4d1276d924e4c32a5bc54a1f99f290f
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 d14cd1b61..831c0590a 100755
--- a/fs_selfservice/FS-SelfService/cgi/selfservice.cgi
+++ b/fs_selfservice/FS-SelfService/cgi/selfservice.cgi
@@ -623,9 +623,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";
@@ -1222,5 +1222,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