From 541750ecb3c7cb9dea0c31f100579873be729116 Mon Sep 17 00:00:00 2001 From: Nightfly Date: Wed, 28 Feb 2018 14:51:47 +0200 Subject: [PATCH] normal password input in change form --- RELEASE | 2 +- api/libs/api.ldap.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASE b/RELEASE index 5e8850a4b..cc1dbd488 100644 --- a/RELEASE +++ b/RELEASE @@ -1 +1 @@ -0.8.8 rev 6005 +0.8.8 rev 6006 diff --git a/api/libs/api.ldap.php b/api/libs/api.ldap.php index 53dac93de..5c2f237cb 100644 --- a/api/libs/api.ldap.php +++ b/api/libs/api.ldap.php @@ -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'); }