LSformElement_password : fix syntax error in getPostData() method

This commit is contained in:
Benjamin Renard 2019-03-12 12:50:28 +01:00
parent 8bb4a1c9cf
commit 887b054328

View file

@ -56,7 +56,7 @@ class LSformElement_password extends LSformElement {
$val = $this -> form -> ldapObject -> attrs[$this -> name] -> getValue();
if( (empty($return[$this -> name][0]) ) && ( ! empty( $val ) ) ) {
unset($return[$this -> name]);
$this -> form -> _notUpdate[$this -> name] == true;
$this -> form -> _notUpdate[$this -> name] = true;
return true;
}