mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-10 01:36:09 +01:00
[TASK] Avoid notices
This commit is contained in:
parent
9e153cf85f
commit
6182f0bdbc
1 changed files with 4 additions and 4 deletions
|
@ -175,18 +175,18 @@ class FrontendEditPanel
|
||||||
</form>';
|
</form>';
|
||||||
|
|
||||||
// Wrap the panel
|
// Wrap the panel
|
||||||
if ($conf['innerWrap']) {
|
if ($conf['innerWrap'] ?? false) {
|
||||||
$panel = $this->cObj->wrap($panel, $conf['innerWrap']);
|
$panel = $this->cObj->wrap($panel, $conf['innerWrap']);
|
||||||
}
|
}
|
||||||
if ($conf['innerWrap.']) {
|
if ($conf['innerWrap.'] ?? false) {
|
||||||
$panel = $this->cObj->stdWrap($panel, $conf['innerWrap.']);
|
$panel = $this->cObj->stdWrap($panel, $conf['innerWrap.']);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wrap the complete panel
|
// Wrap the complete panel
|
||||||
if ($conf['outerWrap']) {
|
if ($conf['outerWrap'] ?? false) {
|
||||||
$panel = $this->cObj->wrap($panel, $conf['outerWrap']);
|
$panel = $this->cObj->wrap($panel, $conf['outerWrap']);
|
||||||
}
|
}
|
||||||
if ($conf['outerWrap.']) {
|
if ($conf['outerWrap.'] ?? false) {
|
||||||
$panel = $this->cObj->stdWrap($panel, $conf['outerWrap.']);
|
$panel = $this->cObj->stdWrap($panel, $conf['outerWrap.']);
|
||||||
}
|
}
|
||||||
if ($conf['printBeforeContent'] ?? false) {
|
if ($conf['printBeforeContent'] ?? false) {
|
||||||
|
|
Loading…
Reference in a new issue