From cdcd2e78825e283f84ddbef54da3413b12115b37 Mon Sep 17 00:00:00 2001
From: Roland Waldner <most.wanted@gmx.at>
Date: Tue, 12 Jun 2012 21:15:48 +0200
Subject: [PATCH] [TASK] CGL FunctionCallArgumentSpacingNoSpaceAfterComma in
 sysext install

Change-Id: I1bcaa9c976925445413a348eb67844d0a184f982
Resolves: #37977
Releases: 6.0
Reviewed-on: http://review.typo3.org/12007
Reviewed-by: Oliver Klee
Reviewed-by: Christian Kuhn
Tested-by: Christian Kuhn
---
 typo3/sysext/install/mod/class.tx_install.php | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/typo3/sysext/install/mod/class.tx_install.php b/typo3/sysext/install/mod/class.tx_install.php
index e6b19811a03d..cac4a03df9b9 100644
--- a/typo3/sysext/install/mod/class.tx_install.php
+++ b/typo3/sysext/install/mod/class.tx_install.php
@@ -5077,7 +5077,7 @@ REMOTE_ADDR was '".t3lib_div::getIndpEnv('REMOTE_ADDR')."' (".t3lib_div::getIndp
 					Skipped - extension not in the list of allowed extensions
 					([GFX][imagefile_ext]).
 				</p>
-			',1);
+			', 1);
 		} else {
 			return 1;
 		}
@@ -6244,7 +6244,7 @@ REMOTE_ADDR was '".t3lib_div::getIndpEnv('REMOTE_ADDR')."' (".t3lib_div::getIndp
 					}
 				break;
 				case 'cache':
-					$tableListArr = explode(',','cache_pages,cache_pagesection,cache_hash,cache_imagesizes,--div--,sys_log,sys_history,--div--,be_sessions,fe_sessions,fe_session_data'.
+					$tableListArr = explode(',', 'cache_pages,cache_pagesection,cache_hash,cache_imagesizes,--div--,sys_log,sys_history,--div--,be_sessions,fe_sessions,fe_session_data' .
 						(t3lib_extMgm::isLoaded('indexed_search') ? ',--div--,index_words,index_rel,index_phash,index_grlist,index_section,index_fulltext' : '').
 						(t3lib_extMgm::isLoaded('tt_products') ? ',--div--,sys_products_orders,sys_products_orders_mm_tt_products' : '').
 						(t3lib_extMgm::isLoaded('direct_mail') ? ',--div--,sys_dmail_maillog' : '').
@@ -6841,7 +6841,7 @@ REMOTE_ADDR was '".t3lib_div::getIndpEnv('REMOTE_ADDR')."' (".t3lib_div::getIndp
 				$this->message($tLabel, 'Basic Installation Completed', $this->messageBasicFinished(), -1, 1);
 				$this->message($tLabel, 'Security Risk!', $this->securityRisk().$this->alterPasswordForm(), 2, 1);
 			} else {
-				$this->message($tLabel,'Still missing something?',nl2br('
+				$this->message($tLabel, 'Still missing something?', nl2br('
 				You may be missing one of these points before your TYPO3 installation is complete:
 
 				'.(count($tables)?'':'- You haven\'t imported any tables yet.
@@ -6851,7 +6851,7 @@ REMOTE_ADDR was '".t3lib_div::getIndpEnv('REMOTE_ADDR')."' (".t3lib_div::getIndp
 				.'
 
 				You\'re about to import a database with a complete site in it, these three points should be met.
-				'),-1,1);
+				'), -1, 1);
 			}
 		}
 		return $mode123Imported;
@@ -7075,7 +7075,7 @@ REMOTE_ADDR was '".t3lib_div::getIndpEnv('REMOTE_ADDR')."' (".t3lib_div::getIndp
 				// Get the subpart for rows
 			$rowsSubpart = t3lib_parsehtml::getSubpart($template, '###ROWS###');
 			foreach ($arr as $fieldname => $fieldContent) {
-				if (!t3lib_div::inList($excludeList,$fieldname) && substr($fieldname, 0, strlen($this->sqlHandler->getDeletedPrefixKey()))!=$this->sqlHandler->getDeletedPrefixKey() && substr($fieldname, -1)!='.') {
+				if (!t3lib_div::inList($excludeList, $fieldname) && substr($fieldname, 0, strlen($this->sqlHandler->getDeletedPrefixKey())) != $this->sqlHandler->getDeletedPrefixKey() && substr($fieldname, -1) != '.') {
 					if ($arr[$fieldname.'.']) {
 							// Get the subpart for pre
 						$preSubpart = t3lib_parsehtml::getSubpart($rowsSubpart, '###PRE###');
-- 
GitLab