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

jvergara
01.08.2008 6ea7a46b046aa9dd9177480de17a8723772dbbc3
Fix for issue 3549 (Reset password in control panel does not work).
2 files modified
8 ■■■■ changed files
opends/src/guitools/org/opends/guitools/controlpanel/ui/ResetUserPasswordPanel.java 6 ●●●● patch | view | raw | blame | history
opends/src/messages/messages/admin_tool.properties 2 ●●● patch | view | raw | blame | history
opends/src/guitools/org/opends/guitools/controlpanel/ui/ResetUserPasswordPanel.java
@@ -119,7 +119,7 @@
      errors.add(ERR_CTRL_PANEL_NEW_PASSWORD_REQUIRED.get());
      setPrimaryInvalid(lPassword);
    }
    else if (pwd1.equals(pwd2))
    else if (!pwd1.equals(pwd2))
    {
      errors.add(ERR_CTRL_PANEL_PASSWORD_DO_NOT_MATCH.get());
      setPrimaryInvalid(lPassword);
@@ -201,6 +201,10 @@
      {
        labels[i] = Utilities.createPrimaryLabel(strings[i]);
      }
      else
      {
        labels[i].setText(strings[i].toString());
      }
      gbc.gridx = 0;
      gbc.insets.left = 0;
opends/src/messages/messages/admin_tool.properties
@@ -2091,7 +2091,7 @@
 password.
INFO_CTRL_PANEL_RESET_USER_PASSWORD_TITLE=Reset User Password
INFO_CTRL_PANEL_RESET_USER_PASSWORD_DN_LABEL=DN:
INFO_CTRL_PANEL_RESET_USER_PASSWORD_PWD_LABEL=Password:
INFO_CTRL_PANEL_RESET_USER_PASSWORD_PWD_LABEL=New User Password:
INFO_CTRL_PANEL_RESET_USER_PASSWORD_CONFIRM_LABEL=Password (confirm):
INFO_CTRL_PANEL_RESET_USER_PASSWORD_NAME_LABEL=Name:
INFO_CTRL_PANEL_RESETTING_USER_PASSWORD_SUMMARY=Resetting user password...