summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base/ca/shared/webapps/ca/services.template7
-rw-r--r--base/server/share/webapps/ROOT/index.jsp2
2 files changed, 8 insertions, 1 deletions
diff --git a/base/ca/shared/webapps/ca/services.template b/base/ca/shared/webapps/ca/services.template
index 22081081e..fc53c23b0 100644
--- a/base/ca/shared/webapps/ca/services.template
+++ b/base/ca/shared/webapps/ca/services.template
@@ -100,6 +100,13 @@ Certificate System CA Services Page
<td>&nbsp;</td>
</tr>
<script language=javascript>
+
+if (typeof(crypto) != "undefined" && typeof(crypto.version) != "undefined") {
+} else {
+ document.write('<p> <font color="red"> Warning: This version of Firefox no longer supports the crypto web object used to generate and archive keys from the broswer. Although Certificate System will continue to work, some of the functionality may no longer be supported. </font> </p>');
+ document.write('<br>');
+}
+
for (var i=0; i<result.recordSet.length; ++i) {
document.write('<tr valign="TOP">');
document.write('<td>');
diff --git a/base/server/share/webapps/ROOT/index.jsp b/base/server/share/webapps/ROOT/index.jsp
index 341af4d81..f63e69869 100644
--- a/base/server/share/webapps/ROOT/index.jsp
+++ b/base/server/share/webapps/ROOT/index.jsp
@@ -87,7 +87,7 @@ $(function() {
<script>
if (typeof(crypto) != "undefined" && typeof(crypto.version) != "undefined") {
} else {
- document.write('<p> <font color="red"> Warning: This version of Firefox no longer supports the crypto web object used to generate and archive keys from the broswer. Although Certificate System will continue to work, some of the functionality may be no longer supported. </font> </p>');
+ document.write('<p> <font color="red"> Warning: This version of Firefox no longer supports the crypto web object used to generate and archive keys from the broswer. Although Certificate System will continue to work, some of the functionality may no longer be supported. </font> </p>');
document.write('<br>');
}
</script>