mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-09 17:26: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>';
|
||||
|
||||
// Wrap the panel
|
||||
if ($conf['innerWrap']) {
|
||||
if ($conf['innerWrap'] ?? false) {
|
||||
$panel = $this->cObj->wrap($panel, $conf['innerWrap']);
|
||||
}
|
||||
if ($conf['innerWrap.']) {
|
||||
if ($conf['innerWrap.'] ?? false) {
|
||||
$panel = $this->cObj->stdWrap($panel, $conf['innerWrap.']);
|
||||
}
|
||||
|
||||
// Wrap the complete panel
|
||||
if ($conf['outerWrap']) {
|
||||
if ($conf['outerWrap'] ?? false) {
|
||||
$panel = $this->cObj->wrap($panel, $conf['outerWrap']);
|
||||
}
|
||||
if ($conf['outerWrap.']) {
|
||||
if ($conf['outerWrap.'] ?? false) {
|
||||
$panel = $this->cObj->stdWrap($panel, $conf['outerWrap.']);
|
||||
}
|
||||
if ($conf['printBeforeContent'] ?? false) {
|
||||
|
|
Loading…
Reference in a new issue