From 00a8ca8273d99a31e653bcaae50e338132675268 Mon Sep 17 00:00:00 2001 From: yuri Date: Tue, 20 Feb 2018 14:58:51 +0200 Subject: [PATCH] fix select manager --- application/Espo/Core/SelectManagers/Base.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/Espo/Core/SelectManagers/Base.php b/application/Espo/Core/SelectManagers/Base.php index c000216a95..f8526c53c4 100644 --- a/application/Espo/Core/SelectManagers/Base.php +++ b/application/Espo/Core/SelectManagers/Base.php @@ -206,12 +206,12 @@ class Base } } - $whereClause = $this->convertWhere($where); + $whereClause = $this->convertWhere($where, false, $result); $result['whereClause'] = array_merge($result['whereClause'], $whereClause); } - public function convertWhere(array $where, $ignoreAdditionaFilterTypes = false) + public function convertWhere(array $where, $ignoreAdditionaFilterTypes = false, &$result = null) { $whereClause = [];