Passed
Branch master (0733fd)
by Felix
05:02
created
ext_emconf.php 1 patch
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -9,35 +9,35 @@
 block discarded – undo
9 9
 ########################################################################
10 10
 
11 11
 $EM_CONF[$_EXTKEY] = array(
12
-	'title' => 'update_refindex',
13
-	'description' => 'extension contains scheduler-task to update refindex of TYPO3',
14
-	'category' => '',
15
-	'author' => '',
16
-	'author_email' => '[email protected]',
17
-	'author_company' => 'AOE GmbH',
18
-	'shy' => '',
19
-	'dependencies' => '',
20
-	'conflicts' => '',
21
-	'priority' => '',
22
-	'module' => '',
23
-	'state' => 'alpha',
24
-	'internal' => '',
25
-	'uploadfolder' => 0,
26
-	'createDirs' => '',
27
-	'modify_tables' => '',
28
-	'clearCacheOnLoad' => 1,
29
-	'lockType' => '',
30
-	'version' => '0.2.7',
31
-	'constraints' => array(
32
-		'depends' => array(
33
-			'php' => '5.2.0',
34
-			'typo3' => '6.2.0-7.6.99',
35
-		),
36
-		'conflicts' => array(
37
-		),
38
-		'suggests' => array(
39
-		),
40
-	),
41
-	'_md5_values_when_last_written' => '',
12
+    'title' => 'update_refindex',
13
+    'description' => 'extension contains scheduler-task to update refindex of TYPO3',
14
+    'category' => '',
15
+    'author' => '',
16
+    'author_email' => '[email protected]',
17
+    'author_company' => 'AOE GmbH',
18
+    'shy' => '',
19
+    'dependencies' => '',
20
+    'conflicts' => '',
21
+    'priority' => '',
22
+    'module' => '',
23
+    'state' => 'alpha',
24
+    'internal' => '',
25
+    'uploadfolder' => 0,
26
+    'createDirs' => '',
27
+    'modify_tables' => '',
28
+    'clearCacheOnLoad' => 1,
29
+    'lockType' => '',
30
+    'version' => '0.2.7',
31
+    'constraints' => array(
32
+        'depends' => array(
33
+            'php' => '5.2.0',
34
+            'typo3' => '6.2.0-7.6.99',
35
+        ),
36
+        'conflicts' => array(
37
+        ),
38
+        'suggests' => array(
39
+        ),
40
+    ),
41
+    '_md5_values_when_last_written' => '',
42 42
 );
43 43
 ?>
Please login to merge, or discard this patch.
ext_localconf.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
1 1
 <?php
2 2
 if (!defined('TYPO3_MODE')) {
3
-	die ('Access denied.');
3
+    die ('Access denied.');
4 4
 }
5 5
 
6 6
 define ( 'PATH_tx_update_refindex', \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath ( $_EXTKEY ) );
7 7
 
8 8
 if (TYPO3_MODE == 'BE') {
9
-	// register scheduler-task to update refindex of TYPO3
10
-	$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks']['Tx_UpdateRefindex_Scheduler_UpdateRefIndexTask'] = array (
11
-		'extension'        => $_EXTKEY,
12
-		'title'            => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/locallang_db.xml:scheduler_task_updateRefindex.name',
13
-		'description'      => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/locallang_db.xml:scheduler_task_updateRefindex.description',
14
-		'additionalFields' => 'tx_UpdateRefindex_Scheduler_UpdateRefIndexAdditionalFields',
15
-	);
9
+    // register scheduler-task to update refindex of TYPO3
10
+    $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks']['Tx_UpdateRefindex_Scheduler_UpdateRefIndexTask'] = array (
11
+        'extension'        => $_EXTKEY,
12
+        'title'            => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/locallang_db.xml:scheduler_task_updateRefindex.name',
13
+        'description'      => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/locallang_db.xml:scheduler_task_updateRefindex.description',
14
+        'additionalFields' => 'tx_UpdateRefindex_Scheduler_UpdateRefIndexAdditionalFields',
15
+    );
16 16
 }
17 17
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 	die ('Access denied.');
4 4
 }
5 5
 
6
-define ( 'PATH_tx_update_refindex', \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath ( $_EXTKEY ) );
6
+define('PATH_tx_update_refindex', \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY));
7 7
 
8 8
 if (TYPO3_MODE == 'BE') {
9 9
 	// register scheduler-task to update refindex of TYPO3
10
-	$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks']['Tx_UpdateRefindex_Scheduler_UpdateRefIndexTask'] = array (
10
+	$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks']['Tx_UpdateRefindex_Scheduler_UpdateRefIndexTask'] = array(
11 11
 		'extension'        => $_EXTKEY,
12 12
 		'title'            => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/locallang_db.xml:scheduler_task_updateRefindex.name',
13 13
 		'description'      => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/locallang_db.xml:scheduler_task_updateRefindex.description',
Please login to merge, or discard this patch.