Fixing issue 59 with blank passwords being accepted

master
Nathan Adams 2014-10-30 21:06:13 -05:00
parent 9330e47398
commit e982e6869b
1 changed files with 2 additions and 1 deletions

View File

@ -473,7 +473,8 @@ class IDF_Form_UserAccount extends Pluf_Form
public function clean()
{
if (!isset($this->errors['password'])
&& !isset($this->errors['password2'])) {
&& !isset($this->errors['password2'])
&& strlen($this->cleaned_data["password"] > 0)) {
$password1 = $this->cleaned_data['password'];
$password2 = $this->cleaned_data['password2'];
if ($password1 != $password2) {