mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-25 22:56:16 +01:00
BUGFIX: Workaround doctrine limitation
Doctrine will not implode our array, so we have to do
This commit is contained in:
parent
22e097ca85
commit
2b78ffbe96
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ class TcaTableService implements TcaTableServiceInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->isBlackListedRootLineConfigured()) {
|
if ($this->isBlackListedRootLineConfigured()) {
|
||||||
$parameters[':blacklistedRootLine'] = $this->getBlackListedRootLine();
|
$parameters[':blacklistedRootLine'] = implode(',', $this->getBlackListedRootLine());
|
||||||
$whereClause .= ' AND pages.uid NOT IN (:blacklistedRootLine)'
|
$whereClause .= ' AND pages.uid NOT IN (:blacklistedRootLine)'
|
||||||
. ' AND pages.pid NOT IN (:blacklistedRootLine)';
|
. ' AND pages.pid NOT IN (:blacklistedRootLine)';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue