[freeside-commits] branch FREESIDE_4_BRANCH updated. c7c78cca9e17e61c3626f1fd70bb736090c08c5a
Mitch Jackson
mitch at freeside.biz
Fri Jul 20 13:12:42 PDT 2018
The branch, FREESIDE_4_BRANCH has been updated
via c7c78cca9e17e61c3626f1fd70bb736090c08c5a (commit)
from aa2cb98c347122ca883cfe428edf3919f59fc3d5 (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 c7c78cca9e17e61c3626f1fd70bb736090c08c5a
Author: Mitch Jackson <mitch at freeside.biz>
Date: Fri Jul 20 19:35:42 2018 +0000
RT# 80624 Selfservice workaround for Bug on Win10 Edge Browser
diff --git a/fs_selfservice/FS-SelfService/cgi/card.html b/fs_selfservice/FS-SelfService/cgi/card.html
index dfe63710c..eb3e061c7 100644
--- a/fs_selfservice/FS-SelfService/cgi/card.html
+++ b/fs_selfservice/FS-SelfService/cgi/card.html
@@ -9,7 +9,7 @@
<TD>
<SELECT NAME="month">
<%= for ( ( map "0$_", 1 .. 9 ), 10 .. 12 ) {
- $OUT .= '<OPTION'. ($_ == $month ? ' SELECTED' : ''). ">$_\n";
+ $OUT .= '<OPTION'. ($_ == $month ? ' SELECTED' : ''). " VALUE='$_'>$_\n";
} %>
</SELECT>
</TD>
@@ -17,7 +17,7 @@
<TD>
<SELECT NAME="year">
<%= my @a = localtime; for ( $a[5]+1900 .. $a[5]+1915 ) {
- $OUT .= '<OPTION'. ($_ == $year ? ' SELECTED' : ''). ">$_\n";
+ $OUT .= '<OPTION'. ($_ == $year ? ' SELECTED' : ''). " VALUE='$_'>$_\n";
} %>
</SELECT>
</TD>
-----------------------------------------------------------------------
Summary of changes:
fs_selfservice/FS-SelfService/cgi/card.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list