mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Ludovic Poitou
02.59.2016 be48b70ba7ab780ee99c0ba336a16e4f53578bdc
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).
1 files modified
2 ■■■ changed files
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/SimplifiedViewEntryPanel.java 2 ●●● patch | view | raw | blame | history
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<>();