mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 14:16:11 +01:00
TASK: Break line exceeding max line length
This commit is contained in:
parent
830fc8a154
commit
416e49026e
1 changed files with 3 additions and 1 deletions
|
@ -275,7 +275,9 @@ class TcaTableService
|
|||
|
||||
foreach ($rootline as $pageInRootLine) {
|
||||
// Check configured black list if present.
|
||||
if ($this->isBlackListedRootLineConfigured() && in_array($pageInRootLine['uid'], $this->getBlackListedRootLine())) {
|
||||
if ($this->isBlackListedRootLineConfigured()
|
||||
&& in_array($pageInRootLine['uid'], $this->getBlackListedRootLine())
|
||||
) {
|
||||
return true;
|
||||
}
|
||||
if ($pageInRootLine['extendToSubpages'] && (
|
||||
|
|
Loading…
Reference in a new issue