Skip to content

Commit

Permalink
normal password input in change form
Browse files Browse the repository at this point in the history
  • Loading branch information
nightflyza committed Feb 28, 2018
1 parent c50a5f3 commit 541750e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.8 rev 6005
0.8.8 rev 6006
2 changes: 1 addition & 1 deletion api/libs/api.ldap.php
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ protected function renderUserPasswordForm($userId) {
if (isset($this->allUsers[$userId])) {
$userData = $this->allUsers[$userId];
$inputs = wf_HiddenInput('passchid', $userId);
$inputs.= wf_TextInput('passchpass', __('Password'), $userData['password'], false, 10);
$inputs.= wf_PasswordInput('passchpass', __('Password'), $userData['password'], false, 15);
$inputs.=wf_Submit(__('Save'));
$result.=wf_Form(self::URL_ME, 'POST', $inputs, 'glamour');
}
Expand Down

0 comments on commit 541750e

Please sign in to comment.