From 447f42adb9c3cf92bd611bd14c55c0b81586dc7f Mon Sep 17 00:00:00 2001 From: Roland Waldner Date: Sat, 26 May 2012 21:56:42 +0200 Subject: [PATCH] [TASK] CGL violations FunctionCallArgumentSpacing in /typo3/sysext/f*/ There were violations against the CGL rule "FunctionCallArgumentSpacingNoSpaceAfterComma" in /typo3/sysext/f*/. These will be reduced by this commit. Change-Id: I301a98427a558edbabc62e73e4ca05be546f3482 Resolves: #37512 Releases: 6.0 Reviewed-on: http://review.typo3.org/11652 Reviewed-by: Oliver Klee Reviewed-by: Georg Ringer Tested-by: Georg Ringer --- view/class.tx_feedit_editpanel.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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.']); } }