From fd49b18bf4e14dd56ee148f21952a112dc3b0d6f Mon Sep 17 00:00:00 2001 From: Eric Lippmann <eric.lippmann@netways.de> Date: Tue, 1 Sep 2015 23:30:30 +0200 Subject: [PATCH] Add description to the password input when updating a user --- application/forms/Config/User/UserForm.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/forms/Config/User/UserForm.php b/application/forms/Config/User/UserForm.php index 2f25415d4..09c89d948 100644 --- a/application/forms/Config/User/UserForm.php +++ b/application/forms/Config/User/UserForm.php @@ -59,7 +59,8 @@ class UserForm extends RepositoryForm 'password', 'password', array( - 'label' => $this->translate('Password') + 'description' => $this->translate('Leave empty for not updating the user\'s password'), + 'label' => $this->translate('Password'), ) );