From 31ef1a19a377051c80ac89581e13f558ba26e9ea Mon Sep 17 00:00:00 2001 From: liumengyi Date: Sun, 29 Jan 2023 10:42:22 +0800 Subject: [PATCH] * Fix bug for can no password. --- module/user/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/user/model.php b/module/user/model.php index d1724b9605..48cc74befe 100644 --- a/module/user/model.php +++ b/module/user/model.php @@ -862,7 +862,7 @@ class userModel extends model $_POST['password1'] = trim($_POST['password1']); $_POST['password2'] = trim($_POST['password2']); if(!$canNoPassword and empty($_POST['password1'])) dao::$errors['password1'][] = sprintf($this->lang->error->notempty, $this->lang->user->password) . '
'; - if($this->post->password1 != false) + if(!$canNoPassword and $this->post->password1 != false) { if(isset($this->config->safe->mode) and ($this->post->passwordStrength < $this->config->safe->mode)) dao::$errors['password1'][] = zget($this->lang->user->placeholder->passwordStrengthCheck, $this->config->safe->mode, $this->lang->user->weakPassword) . '
';