allow leading/trailing whitespace in passwords

This commit is contained in:
Mike Macgirvin 2010-10-09 16:19:52 -07:00
parent 006ca54f92
commit dcaadada35
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ function settings_post(&$a) {
}
if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
$newpass = trim($_POST['npassword']);
$confirm = trim($_POST['confirm']);
$newpass = $_POST['npassword'];
$confirm = $_POST['confirm'];
$err = false;
if($newpass != $confirm ) {