diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-08-19 22:18:06 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-08-19 22:18:06 -0700 |
commit | f7c56106e72d81d397276ad89d175c433a1f5a2d (patch) | |
tree | d2a0ef79aef8fdd4d5668bd006bd5f66eba6fd08 | |
parent | cac8aa7a693574292fc408c204472f2ef267a930 (diff) | |
download | volse-hubzilla-f7c56106e72d81d397276ad89d175c433a1f5a2d.tar.gz volse-hubzilla-f7c56106e72d81d397276ad89d175c433a1f5a2d.tar.bz2 volse-hubzilla-f7c56106e72d81d397276ad89d175c433a1f5a2d.zip |
rename new password field so form filling browsers don't always populate it
-rw-r--r-- | mod/settings.php | 4 | ||||
-rw-r--r-- | view/settings.tpl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mod/settings.php b/mod/settings.php index 0cac6e0de..71109d903 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -24,9 +24,9 @@ function settings_post(&$a) { notice( t('Permission denied.') . EOL); return; } - if((x($_POST,'password')) || (x($_POST,'confirm'))) { + if((x($_POST,'npassword')) || (x($_POST,'confirm'))) { - $newpass = trim($_POST['password']); + $newpass = trim($_POST['npassword']); $confirm = trim($_POST['confirm']); $err = false; diff --git a/view/settings.tpl b/view/settings.tpl index 00c85cb40..ce13e2e2e 100644 --- a/view/settings.tpl +++ b/view/settings.tpl @@ -74,7 +74,7 @@ $profile_in_net_dir Leave password fields blank unless changing </p> <label id="settings-password-label" for="settings-password" >New Password: </label> -<input type="password" id="settings-password" name="password" ></input> +<input type="password" id="settings-password" name="npassword" ></input> </div> <div id="settings-password-end" ></div> |