summaryrefslogtreecommitdiffstats
path: root/pki/base/console
diff options
context:
space:
mode:
authorjmagne <jmagne@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2010-10-09 00:36:00 +0000
committerjmagne <jmagne@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2010-10-09 00:36:00 +0000
commit829fb6d82407e897db53991df55526da2e287a5b (patch)
tree03c958f2938a49324392abfc707cc653b465ab64 /pki/base/console
parentdcffbad91a3d71001e511878f8660bd0a4768907 (diff)
downloadpki-829fb6d82407e897db53991df55526da2e287a5b.tar.gz
pki-829fb6d82407e897db53991df55526da2e287a5b.tar.xz
pki-829fb6d82407e897db53991df55526da2e287a5b.zip
Fix Bugzilla Bug#539781 - rhcs 71 - CRLs Partitioned by Reason Code - onlySomeReasons ?
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@1343 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
Diffstat (limited to 'pki/base/console')
-rw-r--r--pki/base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/pki/base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.java b/pki/base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.java
index 882035789..6e22af602 100644
--- a/pki/base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.java
+++ b/pki/base/console/src/com/netscape/admin/certsrv/config/CMSCRLFormatPanel.java
@@ -430,5 +430,21 @@ public class CMSCRLFormatPanel extends CMSBaseTab {
}
}
+ /**
+ * Override the initialize method only for this panel.
+ * We need to refresh in case the CRLDistributionPointExtension
+ * has modified the caCertsOnly property for us.
+ **/
+ public void initialize() {
+ Debug.println("CMSCRLFormatPanel: intialize()");
+ if (!mInit) {
+ init();
+ mInit = true;
+ } else {
+ if(!isDirty()) {
+ refresh();
+ }
+ }
+ }
}