From be48b70ba7ab780ee99c0ba336a16e4f53578bdc Mon Sep 17 00:00:00 2001 From: Ludovic Poitou <ludovic.poitou@forgerock.com> Date: Mon, 02 May 2016 12:59:30 +0000 Subject: [PATCH] Fix for OPENDJ-2959: Control panel Manage Entries window is broken. The marker to indicate the userPassword confirmation field results in a non standard compliant attribute name. Simple fix is to make sure the marker is compliant (no space). --- opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/SimplifiedViewEntryPanel.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/SimplifiedViewEntryPanel.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/SimplifiedViewEntryPanel.java index 9034f57..a54f5fb 100644 --- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/SimplifiedViewEntryPanel.java +++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/SimplifiedViewEntryPanel.java @@ -131,7 +131,7 @@ private final Map<String, String> hmDisplayedNames = new HashMap<>(); private final Map<String, JComponent> hmComponents = new HashMap<>(); - private final String CONFIRM_PASSWORD = "confirm password"; + private final String CONFIRM_PASSWORD = "opendj-confirm-password"; /** Map containing as key the attribute name and as value a localizable message. */ private final static Map<String, LocalizableMessage> hmFriendlyAttrNames = new HashMap<>(); -- Gitblit v1.10.0