From 72f38d061206c65f874b2884895bd002cba1411b Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Fri, 8 May 2020 20:48:53 +0200 Subject: [PATCH] LSformElement :: password: fix syntax error in getPostData method --- src/includes/class/class.LSformElement_password.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/includes/class/class.LSformElement_password.php b/src/includes/class/class.LSformElement_password.php index 8c8d44aa..073adbf3 100644 --- a/src/includes/class/class.LSformElement_password.php +++ b/src/includes/class/class.LSformElement_password.php @@ -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; }