LSformElement :: password: fix syntax error in getPostData method

This commit is contained in:
Benjamin Renard 2020-05-08 20:48:53 +02:00
parent a356555e0a
commit 72f38d0612

View file

@ -65,7 +65,7 @@ class LSformElement_password extends LSformElement {
if ($this -> verifyPassword($return[$this -> name][0]) || (empty($return[$this -> name][0]) && empty($val))) {
LSdebug("Password : no change");
unset($return[$this -> name]);
$this -> form -> _notUpdate[$this -> name] == true;
$this -> form -> _notUpdate[$this -> name] = true;
return true;
}