Completed
Push — master ( ba0ea8...c1bb75 )
by
unknown
25:13 queued 10:52
created
typo3/sysext/backend/Classes/Form/Container/FlexFormElementContainer.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -146,15 +146,15 @@
 block discarded – undo
146 146
                     $processedTitle = str_replace('\\n', '<br />', htmlspecialchars($fakeParameterArray['fieldConf']['label']));
147 147
                     $html = [];
148 148
                     $html[] = '<div class="form-section">';
149
-                    $html[] =   '<div class="form-group t3js-formengine-palette-field t3js-formengine-validation-marker">';
150
-                    $html[] =       '<label class="t3js-formengine-label">';
151
-                    $html[] =           BackendUtility::wrapInHelp($parameterArray['_cshKey'], $flexFormFieldName, $processedTitle);
152
-                    $html[] =           $showFieldName ? ('<code>[' . htmlspecialchars($flexFormFieldName) . ']</code>') : '';
153
-                    $html[] =       '</label>';
154
-                    $html[] =       '<div class="formengine-field-item t3js-formengine-field-item">';
155
-                    $html[] =           $childResult['html'];
156
-                    $html[] =       '</div>';
157
-                    $html[] =   '</div>';
149
+                    $html[] = '<div class="form-group t3js-formengine-palette-field t3js-formengine-validation-marker">';
150
+                    $html[] = '<label class="t3js-formengine-label">';
151
+                    $html[] = BackendUtility::wrapInHelp($parameterArray['_cshKey'], $flexFormFieldName, $processedTitle);
152
+                    $html[] = $showFieldName ? ('<code>[' . htmlspecialchars($flexFormFieldName) . ']</code>') : '';
153
+                    $html[] = '</label>';
154
+                    $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
155
+                    $html[] = $childResult['html'];
156
+                    $html[] = '</div>';
157
+                    $html[] = '</div>';
158 158
                     $html[] = '</div>';
159 159
                     $resultArray['html'] .= implode(LF, $html);
160 160
                     $resultArray = $this->mergeChildReturnIntoExistingResult($resultArray, $childResult, false);
Please login to merge, or discard this patch.
typo3/sysext/recordlist/Classes/Controller/RecordListController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
         $perms_clause = $backendUser->getPagePermsClause(Permission::PAGE_SHOW);
110 110
         // GPvars:
111 111
         $id = (int)($parsedBody['id'] ?? $queryParams['id'] ?? 0);
112
-        $pointer =  max(0, (int)($parsedBody['pointer'] ?? $queryParams['pointer'] ?? 0));
112
+        $pointer = max(0, (int)($parsedBody['pointer'] ?? $queryParams['pointer'] ?? 0));
113 113
         $table = (string)($parsedBody['table'] ?? $queryParams['table'] ?? '');
114 114
         $search_field = (string)($parsedBody['search_field'] ?? $queryParams['search_field'] ?? '');
115 115
         $search_levels = (int)($parsedBody['search_levels'] ?? $queryParams['search_levels'] ?? 0);
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Form/FieldWizard/OtherLanguageThumbnails.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
             try {
74 74
                 $file = GeneralUtility::makeInstance(ResourceFactory::class)->getFileObject($fileUid);
75
-            } catch (FileDoesNotExistException|\InvalidArgumentException $e) {
75
+            } catch (FileDoesNotExistException | \InvalidArgumentException $e) {
76 76
                 continue;
77 77
             }
78 78
 
@@ -99,8 +99,8 @@  discard block
 block discarded – undo
99 99
             if ($processedImages !== []) {
100 100
                 $iconIdentifier = $this->data['systemLanguageRows'][(int)$sysLanguageUid]['flagIconIdentifier'] ?? 'flags-multiple';
101 101
                 $html[] = '<div class="t3-form-original-language">';
102
-                $html[] =   $iconFactory->getIcon($iconIdentifier, Icon::SIZE_SMALL)->render();
103
-                $html[] =   implode(LF, $processedImages);
102
+                $html[] = $iconFactory->getIcon($iconIdentifier, Icon::SIZE_SMALL)->render();
103
+                $html[] = implode(LF, $processedImages);
104 104
                 $html[] = '</div>';
105 105
             }
106 106
         }
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Charset/CharsetConverter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -518,7 +518,7 @@
 block discarded – undo
518 518
         while (!feof($fh)) {
519 519
             $line = (string)fgets($fh, 4096);
520 520
             // Has a lot of info
521
-            [$char, $name, $cat, , , $decomp, , , $num] = explode(';', rtrim($line));
521
+            [$char, $name, $cat,,, $decomp,,, $num] = explode(';', rtrim($line));
522 522
             $ord = hexdec($char);
523 523
             if ($ord > 65535) {
524 524
                 // Only process the BMP
Please login to merge, or discard this patch.
typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2146,7 +2146,7 @@
 block discarded – undo
2146 2146
         $tempCommaReplacementString = '###KASPER###';
2147 2147
 
2148 2148
         // replace every "," wrapped in "()" by a "unique" string
2149
-        $string = preg_replace_callback('/\((?>[^()]|(?R))*\)/', function ($result) use ($tempCommaReplacementString) {
2149
+        $string = preg_replace_callback('/\((?>[^()]|(?R))*\)/', function($result) use ($tempCommaReplacementString) {
2150 2150
             return str_replace(',', $tempCommaReplacementString, $result[0]);
2151 2151
         }, $string) ?? '';
2152 2152
 
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Resource/ResourceStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2785,7 +2785,7 @@
 block discarded – undo
2785 2785
                         $this->processingFolder = $this->createFolderObject($data['identifier'], $data['name']);
2786 2786
                     }
2787 2787
                 }
2788
-            } catch (InsufficientFolderWritePermissionsException|ResourcePermissionsUnavailableException $e) {
2788
+            } catch (InsufficientFolderWritePermissionsException | ResourcePermissionsUnavailableException $e) {
2789 2789
                 $this->processingFolder = GeneralUtility::makeInstance(
2790 2790
                     InaccessibleFolder::class,
2791 2791
                     $this,
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/LinkHandling/FolderLinkHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         $combinedIdentifier = ($data['storage'] ?? '0') . ':' . $data['identifier'];
69 69
         try {
70 70
             $folder = $this->getResourceFactory()->getFolderObjectFromCombinedIdentifier($combinedIdentifier);
71
-        } catch (FolderDoesNotExistException|InsufficientFolderAccessPermissionsException $e) {
71
+        } catch (FolderDoesNotExistException | InsufficientFolderAccessPermissionsException $e) {
72 72
             $folder = null;
73 73
         }
74 74
         return ['folder' => $folder];
Please login to merge, or discard this patch.
sysext/backend/Classes/View/Wizard/Element/BackendLayoutWizardElement.php 1 patch
Spacing   +73 added lines, -73 removed lines patch added patch discarded remove patch
@@ -60,84 +60,84 @@
 block discarded – undo
60 60
         $json = (string)json_encode($this->rows, JSON_HEX_QUOT | JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_APOS);
61 61
         $html = [];
62 62
         $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
63
-        $html[] =   $fieldInformationHtml;
64
-        $html[] =   '<div class="form-control-wrap">';
65
-        $html[] =       '<div class="form-wizards-wrap">';
66
-        $html[] =           '<div class="form-wizards-element">';
67
-        $html[] =               '<input';
68
-        $html[] =                   ' type="hidden"';
69
-        $html[] =                   ' name="' . htmlspecialchars($this->data['parameterArray']['itemFormElName']) . '"';
70
-        $html[] =                   ' value="' . htmlspecialchars($this->data['parameterArray']['itemFormElValue']) . '"';
71
-        $html[] =                   '/>';
72
-        $html[] =               '<table class="grideditor table table-bordered">';
73
-        $html[] =                   '<tr>';
74
-        $html[] =                       '<td colspan="2" align="center">';
75
-        $html[] =                           '<div class="btn-group">';
76
-        $html[] =                               '<a class="btn btn-default btn-sm t3js-grideditor-removerow-top" href="#"';
77
-        $html[] =                                   ' title="' . htmlspecialchars($lang->getLL('grid_removeRow')) . '">';
78
-        $html[] =                                   '<i class="fa fa-fw fa-minus"></i>';
79
-        $html[] =                               '</a>';
80
-        $html[] =                               '<a class="btn btn-default btn-sm t3js-grideditor-addrow-top" href="#"';
81
-        $html[] =                                   ' title="' . htmlspecialchars($lang->getLL('grid_addRow')) . '">';
82
-        $html[] =                                   '<i class="fa fa-fw fa-plus"></i>';
83
-        $html[] =                               '</a>';
84
-        $html[] =                           '</div>';
85
-        $html[] =                       '</td>';
86
-        $html[] =                   '</tr>';
87
-        $html[] =                   '<tr>';
88
-        $html[] =                       '<td class="editor_cell">';
89
-        $html[] =                           '<div';
90
-        $html[] =                               ' id="editor"';
91
-        $html[] =                               ' class="t3js-grideditor"';
92
-        $html[] =                               ' data-data="' . htmlspecialchars($json) . '"';
93
-        $html[] =                               ' data-rowcount="' . (int)$this->rowCount . '"';
94
-        $html[] =                               ' data-colcount="' . (int)$this->colCount . '"';
95
-        $html[] =                               ' data-field="' . htmlspecialchars($this->data['parameterArray']['itemFormElName']) . '"';
96
-        $html[] =                           '>';
97
-        $html[] =                           '</div>';
98
-        $html[] =                       '</td>';
99
-        $html[] =                       '<td>';
100
-        $html[] =                           '<div class="btn-group-vertical">';
101
-        $html[] =                               '<a class="btn btn-default btn-sm t3js-grideditor-addcolumn" href="#"';
102
-        $html[] =                                   ' title="' . htmlspecialchars($lang->getLL('grid_addColumn')) . '">';
103
-        $html[] =                                   '<i class="fa fa-fw fa-plus"></i>';
104
-        $html[] =                               '</a>';
105
-        $html[] =                               '<a class="btn btn-default btn-sm t3js-grideditor-removecolumn" href="#"';
106
-        $html[] =                                   ' title="' . htmlspecialchars($lang->getLL('grid_removeColumn')) . '">';
107
-        $html[] =                                   '<i class="fa fa-fw fa-minus"></i>';
108
-        $html[] =                               '</a>';
109
-        $html[] =                           '</div>';
110
-        $html[] =                       '</td>';
111
-        $html[] =                   '</tr>';
112
-        $html[] =                   '<tr>';
113
-        $html[] =                       '<td colspan="2" align="center">';
114
-        $html[] =                           '<div class="btn-group">';
115
-        $html[] =                               '<a class="btn btn-default btn-sm t3js-grideditor-addrow-bottom" href="#"';
116
-        $html[] =                                   ' title="' . htmlspecialchars($lang->getLL('grid_addRow')) . '">';
117
-        $html[] =                                   '<i class="fa fa-fw fa-plus"></i>';
118
-        $html[] =                               '</a>';
119
-        $html[] =                               '<a class="btn btn-default btn-sm t3js-grideditor-removerow-bottom" href="#"';
120
-        $html[] =                                   ' title="' . htmlspecialchars($lang->getLL('grid_removeRow')) . '">';
121
-        $html[] =                                   '<i class="fa fa-fw fa-minus"></i>';
122
-        $html[] =                               '</a>';
123
-        $html[] =                           '</div>';
124
-        $html[] =                       '</td>';
125
-        $html[] =                   '</tr>';
126
-        $html[] =                   '<tr>';
127
-        $html[] =                       '<td colspan="2">';
128
-        $html[] =                           '<a href="#" class="btn btn-default btn-sm t3js-grideditor-preview-button"></a>';
129
-        $html[] =                           '<pre class="t3js-grideditor-preview-config grideditor-preview"><code></code></pre>';
130
-        $html[] =                       '</td>';
131
-        $html[] =                   '</tr>';
132
-        $html[] =               '</table>';
133
-        $html[] =           '</div>';
63
+        $html[] = $fieldInformationHtml;
64
+        $html[] = '<div class="form-control-wrap">';
65
+        $html[] = '<div class="form-wizards-wrap">';
66
+        $html[] = '<div class="form-wizards-element">';
67
+        $html[] = '<input';
68
+        $html[] = ' type="hidden"';
69
+        $html[] = ' name="' . htmlspecialchars($this->data['parameterArray']['itemFormElName']) . '"';
70
+        $html[] = ' value="' . htmlspecialchars($this->data['parameterArray']['itemFormElValue']) . '"';
71
+        $html[] = '/>';
72
+        $html[] = '<table class="grideditor table table-bordered">';
73
+        $html[] = '<tr>';
74
+        $html[] = '<td colspan="2" align="center">';
75
+        $html[] = '<div class="btn-group">';
76
+        $html[] = '<a class="btn btn-default btn-sm t3js-grideditor-removerow-top" href="#"';
77
+        $html[] = ' title="' . htmlspecialchars($lang->getLL('grid_removeRow')) . '">';
78
+        $html[] = '<i class="fa fa-fw fa-minus"></i>';
79
+        $html[] = '</a>';
80
+        $html[] = '<a class="btn btn-default btn-sm t3js-grideditor-addrow-top" href="#"';
81
+        $html[] = ' title="' . htmlspecialchars($lang->getLL('grid_addRow')) . '">';
82
+        $html[] = '<i class="fa fa-fw fa-plus"></i>';
83
+        $html[] = '</a>';
84
+        $html[] = '</div>';
85
+        $html[] = '</td>';
86
+        $html[] = '</tr>';
87
+        $html[] = '<tr>';
88
+        $html[] = '<td class="editor_cell">';
89
+        $html[] = '<div';
90
+        $html[] = ' id="editor"';
91
+        $html[] = ' class="t3js-grideditor"';
92
+        $html[] = ' data-data="' . htmlspecialchars($json) . '"';
93
+        $html[] = ' data-rowcount="' . (int)$this->rowCount . '"';
94
+        $html[] = ' data-colcount="' . (int)$this->colCount . '"';
95
+        $html[] = ' data-field="' . htmlspecialchars($this->data['parameterArray']['itemFormElName']) . '"';
96
+        $html[] = '>';
97
+        $html[] = '</div>';
98
+        $html[] = '</td>';
99
+        $html[] = '<td>';
100
+        $html[] = '<div class="btn-group-vertical">';
101
+        $html[] = '<a class="btn btn-default btn-sm t3js-grideditor-addcolumn" href="#"';
102
+        $html[] = ' title="' . htmlspecialchars($lang->getLL('grid_addColumn')) . '">';
103
+        $html[] = '<i class="fa fa-fw fa-plus"></i>';
104
+        $html[] = '</a>';
105
+        $html[] = '<a class="btn btn-default btn-sm t3js-grideditor-removecolumn" href="#"';
106
+        $html[] = ' title="' . htmlspecialchars($lang->getLL('grid_removeColumn')) . '">';
107
+        $html[] = '<i class="fa fa-fw fa-minus"></i>';
108
+        $html[] = '</a>';
109
+        $html[] = '</div>';
110
+        $html[] = '</td>';
111
+        $html[] = '</tr>';
112
+        $html[] = '<tr>';
113
+        $html[] = '<td colspan="2" align="center">';
114
+        $html[] = '<div class="btn-group">';
115
+        $html[] = '<a class="btn btn-default btn-sm t3js-grideditor-addrow-bottom" href="#"';
116
+        $html[] = ' title="' . htmlspecialchars($lang->getLL('grid_addRow')) . '">';
117
+        $html[] = '<i class="fa fa-fw fa-plus"></i>';
118
+        $html[] = '</a>';
119
+        $html[] = '<a class="btn btn-default btn-sm t3js-grideditor-removerow-bottom" href="#"';
120
+        $html[] = ' title="' . htmlspecialchars($lang->getLL('grid_removeRow')) . '">';
121
+        $html[] = '<i class="fa fa-fw fa-minus"></i>';
122
+        $html[] = '</a>';
123
+        $html[] = '</div>';
124
+        $html[] = '</td>';
125
+        $html[] = '</tr>';
126
+        $html[] = '<tr>';
127
+        $html[] = '<td colspan="2">';
128
+        $html[] = '<a href="#" class="btn btn-default btn-sm t3js-grideditor-preview-button"></a>';
129
+        $html[] = '<pre class="t3js-grideditor-preview-config grideditor-preview"><code></code></pre>';
130
+        $html[] = '</td>';
131
+        $html[] = '</tr>';
132
+        $html[] = '</table>';
133
+        $html[] = '</div>';
134 134
         if (!empty($fieldWizardHtml)) {
135 135
             $html[] = '<div class="form-wizards-items-bottom">';
136 136
             $html[] = $fieldWizardHtml;
137 137
             $html[] = '</div>';
138 138
         }
139
-        $html[] =       '</div>';
140
-        $html[] =   '</div>';
139
+        $html[] = '</div>';
140
+        $html[] = '</div>';
141 141
         $html[] = '</div>';
142 142
 
143 143
         $html = implode(LF, $html);
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Form/Element/SelectTreeElement.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -140,43 +140,43 @@
 block discarded – undo
140 140
         $html = [];
141 141
         $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
142 142
         $html[] = $fieldInformationHtml;
143
-        $html[] =   '<div class="form-control-wrap">';
144
-        $html[] =       '<div class="form-wizards-wrap">';
145
-        $html[] =           '<div class="form-wizards-element">';
146
-        $html[] =               '<div class="typo3-tceforms-tree">';
147
-        $html[] =                   '<input class="treeRecord" type="hidden" id="' . htmlspecialchars($fieldId) . '"';
148
-        $html[] =                       ' data-formengine-validation-rules="' . htmlspecialchars($this->getValidationDataAsJsonString($config)) . '"';
149
-        $html[] =                       ' data-relatedfieldname="' . htmlspecialchars($parameterArray['itemFormElName']) . '"';
150
-        $html[] =                       ' data-tablename="' . htmlspecialchars($this->data['tableName']) . '"';
151
-        $html[] =                       ' data-fieldname="' . htmlspecialchars($this->data['fieldName']) . '"';
152
-        $html[] =                       ' data-uid="' . (int)$this->data['vanillaUid'] . '"';
153
-        $html[] =                       ' data-recordtypevalue="' . htmlspecialchars($this->data['recordTypeValue']) . '"';
154
-        $html[] =                       ' data-datastructureidentifier="' . htmlspecialchars($dataStructureIdentifier) . '"';
155
-        $html[] =                       ' data-flexformsheetname="' . htmlspecialchars($flexFormSheetName) . '"';
156
-        $html[] =                       ' data-flexformfieldname="' . htmlspecialchars($flexFormFieldName) . '"';
157
-        $html[] =                       ' data-flexformcontainername="' . htmlspecialchars($flexFormContainerName) . '"';
158
-        $html[] =                       ' data-flexformcontaineridentifier="' . htmlspecialchars($flexFormContainerIdentifier) . '"';
159
-        $html[] =                       ' data-flexformcontainerfieldname="' . htmlspecialchars($flexFormContainerFieldName) . '"';
160
-        $html[] =                       ' data-flexformsectioncontainerisnew="' . htmlspecialchars((string)$flexFormSectionContainerIsNew) . '"';
161
-        $html[] =                       ' data-command="' . htmlspecialchars($this->data['command']) . '"';
162
-        $html[] =                       ' data-read-only="' . $readOnly . '"';
163
-        $html[] =                       ' data-tree-exclusive-keys="' . htmlspecialchars($exclusiveKeys) . '"';
164
-        $html[] =                       ' data-tree-expand-up-to-level="' . ($expanded ? '999' : '1') . '"';
165
-        $html[] =                       ' data-tree-show-toolbar="' . $showHeader . '"';
166
-        $html[] =                       ' name="' . htmlspecialchars($parameterArray['itemFormElName']) . '"';
167
-        $html[] =                       ' id="treeinput' . $formElementId . '"';
168
-        $html[] =                       ' value="' . htmlspecialchars(implode(',', $parameterArray['itemFormElValue'])) . '"';
169
-        $html[] =                   '/>';
170
-        $html[] =               '</div>';
171
-        $html[] =               '<div id="' . $treeWrapperId . '" class="svg-tree-wrapper" style="height: ' . $heightInPx . 'px;"></div>';
172
-        $html[] =           '</div>';
143
+        $html[] = '<div class="form-control-wrap">';
144
+        $html[] = '<div class="form-wizards-wrap">';
145
+        $html[] = '<div class="form-wizards-element">';
146
+        $html[] = '<div class="typo3-tceforms-tree">';
147
+        $html[] = '<input class="treeRecord" type="hidden" id="' . htmlspecialchars($fieldId) . '"';
148
+        $html[] = ' data-formengine-validation-rules="' . htmlspecialchars($this->getValidationDataAsJsonString($config)) . '"';
149
+        $html[] = ' data-relatedfieldname="' . htmlspecialchars($parameterArray['itemFormElName']) . '"';
150
+        $html[] = ' data-tablename="' . htmlspecialchars($this->data['tableName']) . '"';
151
+        $html[] = ' data-fieldname="' . htmlspecialchars($this->data['fieldName']) . '"';
152
+        $html[] = ' data-uid="' . (int)$this->data['vanillaUid'] . '"';
153
+        $html[] = ' data-recordtypevalue="' . htmlspecialchars($this->data['recordTypeValue']) . '"';
154
+        $html[] = ' data-datastructureidentifier="' . htmlspecialchars($dataStructureIdentifier) . '"';
155
+        $html[] = ' data-flexformsheetname="' . htmlspecialchars($flexFormSheetName) . '"';
156
+        $html[] = ' data-flexformfieldname="' . htmlspecialchars($flexFormFieldName) . '"';
157
+        $html[] = ' data-flexformcontainername="' . htmlspecialchars($flexFormContainerName) . '"';
158
+        $html[] = ' data-flexformcontaineridentifier="' . htmlspecialchars($flexFormContainerIdentifier) . '"';
159
+        $html[] = ' data-flexformcontainerfieldname="' . htmlspecialchars($flexFormContainerFieldName) . '"';
160
+        $html[] = ' data-flexformsectioncontainerisnew="' . htmlspecialchars((string)$flexFormSectionContainerIsNew) . '"';
161
+        $html[] = ' data-command="' . htmlspecialchars($this->data['command']) . '"';
162
+        $html[] = ' data-read-only="' . $readOnly . '"';
163
+        $html[] = ' data-tree-exclusive-keys="' . htmlspecialchars($exclusiveKeys) . '"';
164
+        $html[] = ' data-tree-expand-up-to-level="' . ($expanded ? '999' : '1') . '"';
165
+        $html[] = ' data-tree-show-toolbar="' . $showHeader . '"';
166
+        $html[] = ' name="' . htmlspecialchars($parameterArray['itemFormElName']) . '"';
167
+        $html[] = ' id="treeinput' . $formElementId . '"';
168
+        $html[] = ' value="' . htmlspecialchars(implode(',', $parameterArray['itemFormElValue'])) . '"';
169
+        $html[] = '/>';
170
+        $html[] = '</div>';
171
+        $html[] = '<div id="' . $treeWrapperId . '" class="svg-tree-wrapper" style="height: ' . $heightInPx . 'px;"></div>';
172
+        $html[] = '</div>';
173 173
         if ($readOnly === 'false' && !empty($fieldWizardHtml)) {
174
-            $html[] =       '<div class="form-wizards-items-bottom">';
175
-            $html[] =           $fieldWizardHtml;
176
-            $html[] =       '</div>';
174
+            $html[] = '<div class="form-wizards-items-bottom">';
175
+            $html[] = $fieldWizardHtml;
176
+            $html[] = '</div>';
177 177
         }
178
-        $html[] =       '</div>';
179
-        $html[] =   '</div>';
178
+        $html[] = '</div>';
179
+        $html[] = '</div>';
180 180
         $html[] = '</div>';
181 181
 
182 182
         $resultArray['html'] = implode(LF, $html);
Please login to merge, or discard this patch.