diff options
author | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2013-02-18 21:15:32 +0300 |
---|---|---|
committer | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2013-02-18 21:15:32 +0300 |
commit | c5f6a77dbd4480874a1907dec1ad222e03713b22 (patch) | |
tree | 43570907bb436ac06e87129ed4bb7263d53a7d4f /settings | |
parent | f554347db5271e3ae7e251369e5d73e7ab6cec93 (diff) | |
download | nextcloud-server-c5f6a77dbd4480874a1907dec1ad222e03713b22.tar.gz nextcloud-server-c5f6a77dbd4480874a1907dec1ad222e03713b22.zip |
Correct new password input name
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/personal.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 6b3e8acbf02..6e9ad5e1acb 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -37,7 +37,7 @@ if($_['passwordChangeSupported']) { <div id="passwordchanged"><?php echo $l->t('Your password was changed');?></div> <div id="passworderror"><?php echo $l->t('Unable to change your password');?></div> <input type="password" id="pass1" name="oldpassword" placeholder="<?php echo $l->t('Current password');?>" /> - <input type="password" id="pass2" name="personal-password" placeholder="<?php echo $l->t('New password');?>" data-typetoggle="#personal-show" /> + <input type="password" id="pass2" name="password" placeholder="<?php echo $l->t('New password');?>" data-typetoggle="#personal-show" /> <input type="checkbox" id="personal-show" name="show" /><label for="personal-show"></label> <input id="passwordbutton" type="submit" value="<?php echo $l->t('Change password');?>" /> </fieldset> |