mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 20:56:12 +01:00
BUGFIX: Don't break type if settings are not available
* E.g. if no TypoScript is included we still should have an array to not break method calls.
This commit is contained in:
parent
c59ca504ca
commit
24deb93b4f
1 changed files with 3 additions and 0 deletions
|
@ -48,6 +48,9 @@ class ConfigurationContainer implements ConfigurationContainerInterface
|
||||||
'SearchCore',
|
'SearchCore',
|
||||||
'search'
|
'search'
|
||||||
);
|
);
|
||||||
|
if ($this->settings === null) {
|
||||||
|
$this->settings = [];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue