diff options
author | Grant Gayed <ggayed> | 2009-12-15 21:40:02 +0000 |
---|---|---|
committer | Grant Gayed <ggayed> | 2009-12-15 21:40:02 +0000 |
commit | 356e75daa3bb75719970db3c0120081083b9f051 (patch) | |
tree | 46d8e0df8ebabaa33d44aaedf5d55cdb1254006a /bundles | |
parent | 875a6afda126e49d07fa055a275f219302bf9cdc (diff) | |
download | eclipse.platform.swt-356e75daa3bb75719970db3c0120081083b9f051.tar.gz eclipse.platform.swt-356e75daa3bb75719970db3c0120081083b9f051.tar.xz eclipse.platform.swt-356e75daa3bb75719970db3c0120081083b9f051.zip |
*** empty log message ***
Diffstat (limited to 'bundles')
-rw-r--r-- | bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java index 5ede199083..458b5718d5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java @@ -170,9 +170,10 @@ int Alert (int /*long*/ aParent, int /*long*/ aDialogTitle, int /*long*/ aText) * certificate so that the browser's nsIBadCertListener2 will be invoked. */ if (textLabel.indexOf ("ssl_error_bad_cert_domain") != -1 || + textLabel.indexOf ("sec_error_ca_cert_invalid") != -1 || textLabel.indexOf ("sec_error_unknown_issuer") != -1 || textLabel.indexOf ("sec_error_untrusted_issuer") != -1 || - textLabel.indexOf ("sec_error_expired_certificate") != -1) { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ + textLabel.indexOf ("sec_error_expired_certificate") != -1) { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ if (browser != null) { Mozilla mozilla = (Mozilla)browser.webBrowser; mozilla.isRetrievingBadCert = true; |