From 19617e3b854bd29f74d64c47ae05495f209c15cf Mon Sep 17 00:00:00 2001 From: wdammak <26695620+wdammak@users.noreply.github.com> Date: Wed, 14 Oct 2020 19:49:25 +0200 Subject: [PATCH] Update HelperList.php --- classes/helper/HelperList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/helper/HelperList.php b/classes/helper/HelperList.php index f29d98fa3..0686a9dcf 100644 --- a/classes/helper/HelperList.php +++ b/classes/helper/HelperList.php @@ -623,7 +623,7 @@ public function displayListHeader() if (is_string($value)) { $value = json_decode($value, true); } - if (isset($value[0]) && !Validate::isCleanHtml($value[0]) || isset($value[0]) && !Validate::isCleanHtml($value[1])) { + if (isset($value[0]) && !Validate::isCleanHtml($value[0]) || isset($value[1]) && !Validate::isCleanHtml($value[1])) { $value = ''; } $name = $this->list_id.'Filter_'.(isset($params['filter_key']) ? $params['filter_key'] : $key);