From 4fd2a60d666a6f57a38bfa6919b510536c4b424c Mon Sep 17 00:00:00 2001 From: Georg Ringer <georg.ringer@gmail.com> Date: Mon, 17 Nov 2014 20:26:58 +0100 Subject: [PATCH] [BUGFIX] Fix type check in advanced query search TCA fields with type "check" and items are handled as binary fields which is wrong. Fields are used e.g. for the field "hidden" of pages to improve the output. Therefore the check needs to be extended if there are at least 2 items in the item configuration. Resolves: #51982 Releases: master, 6.2 Change-Id: I4a0cc31790e4f12527655b6abfa5cd1eda6dd9c7 Reviewed-on: http://review.typo3.org/34279 Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Tested-by: Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> --- typo3/sysext/core/Classes/Database/QueryGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/core/Classes/Database/QueryGenerator.php b/typo3/sysext/core/Classes/Database/QueryGenerator.php index 6a51433b2153..3347e6dc2bff 100644 --- a/typo3/sysext/core/Classes/Database/QueryGenerator.php +++ b/typo3/sysext/core/Classes/Database/QueryGenerator.php @@ -289,7 +289,7 @@ class QueryGenerator { } break; case 'check': - if (!$this->fields[$fieldName]['items']) { + if (!$this->fields[$fieldName]['items'] || count($this->fields[$fieldName]['items']) <= 1) { $this->fields[$fieldName]['type'] = 'boolean'; } else { $this->fields[$fieldName]['type'] = 'binary'; -- GitLab