From 16663dee7f42d6b9cc745cc5e3dce1e93f8757aa Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 6 Jul 2022 17:17:05 +0800 Subject: [PATCH] * fix bug #24818. --- module/search/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/search/model.php b/module/search/model.php index 7896fc839b..f548435229 100644 --- a/module/search/model.php +++ b/module/search/model.php @@ -320,7 +320,7 @@ class searchModel extends model { $params[$fieldName]['values'] = array('' => '', 'null' => $this->lang->search->null); } - elseif(empty($params[$fieldName]['notnull'])) + elseif(empty($params[$fieldName]['nonull'])) { $params[$fieldName]['values'] = $params[$fieldName]['values'] + array('null' => $this->lang->search->null); }