From 887b05432823d430db0fe0da0ff5ee3b76933ee4 Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Tue, 12 Mar 2019 12:50:28 +0100 Subject: [PATCH] LSformElement_password : fix syntax error in getPostData() method --- public_html/includes/class/class.LSformElement_password.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/includes/class/class.LSformElement_password.php b/public_html/includes/class/class.LSformElement_password.php index c7b10443..90310255 100644 --- a/public_html/includes/class/class.LSformElement_password.php +++ b/public_html/includes/class/class.LSformElement_password.php @@ -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; }