diff --git a/view/class.tx_feedit_editpanel.php b/view/class.tx_feedit_editpanel.php index 85f29b4..2491cec 100644 --- a/view/class.tx_feedit_editpanel.php +++ b/view/class.tx_feedit_editpanel.php @@ -90,7 +90,7 @@ class tx_feedit_editpanel { $panel .= $GLOBALS['BE_USER']->adminPanel->ext_makeToolBar() . ''; } if (isset($allow['edit'])) { - $panel .= $this->editPanelLinkWrap('', $formName, 'edit', $dataArr['_LOCALIZED_UID'] ? $table . ':' . $dataArr['_LOCALIZED_UID'] : $currentRecord); + $panel .= $this->editPanelLinkWrap('', $formName, 'edit', $dataArr['_LOCALIZED_UID'] ? $table . ':' . $dataArr['_LOCALIZED_UID'] : $currentRecord); } // Hiding in workspaces because implementation is incomplete if (isset($allow['move']) && $sortField && $GLOBALS['BE_USER']->workspace === 0) { @@ -117,7 +117,7 @@ class tx_feedit_editpanel { $panel .= $this->editPanelLinkWrap('', $formName, 'delete', '', $GLOBALS['BE_USER']->extGetLL('p_deleteConfirm')); } // Final - $labelTxt = $this->cObj->stdWrap($conf['label'],$conf['label.']); + $labelTxt = $this->cObj->stdWrap($conf['label'], $conf['label.']); foreach((array) $hiddenFields as $name => $value) { $hiddenFieldString .= '' . LF; @@ -302,17 +302,17 @@ class tx_feedit_editpanel { $thick = t3lib_utility_Math::forceIntegerInRange($thick, 1, 100); $color = $conf['color'] ? $conf['color'] : '#cccccc'; if ($conf['innerWrap']) { - $content = $this->wrap($content,$conf['innerWrap']); + $content = $this->wrap($content, $conf['innerWrap']); } if ($conf['innerWrap.']) { - $content = $this->stdWrap($content,$conf['innerWrap.']); + $content = $this->stdWrap($content, $conf['innerWrap.']); } $content = '
' . $content . '
'; if ($conf['outerWrap']) { - $content = $this->wrap($content,$conf['outerWrap']); + $content = $this->wrap($content, $conf['outerWrap']); } if ($conf['outerWrap.']) { - $content = $this->stdWrap($panel,$conf['outerWrap.']); + $content = $this->stdWrap($panel, $conf['outerWrap.']); } }