From e5c5985bc9219adf27ecfe2e69d76ea86da079ae Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Fri, 4 Nov 2016 10:04:56 -0500 Subject: [PATCH] Update 'Password' to 'Current password' to avoid confusion in profile edition - refs BT#11501 --- main/auth/profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/auth/profile.php b/main/auth/profile.php index b194d6c7e8..3a3db1e444 100755 --- a/main/auth/profile.php +++ b/main/auth/profile.php @@ -427,7 +427,7 @@ if (is_platform_authentication() && is_profile_editable() && api_get_setting('profile', 'password') == 'true' ) { - $form->addElement('password', 'password0', array(get_lang('Pass'), get_lang('Enter2passToChange')), array('size' => 40)); + $form->addElement('password', 'password0', array(get_lang('CurrentPassword'), get_lang('Enter2passToChange')), array('size' => 40)); $form->addElement('password', 'password1', get_lang('NewPass'), array('id'=> 'password1', 'size' => 40)); $checkPass = api_get_setting('allow_strength_pass_checker');