Completed
Push — master ( 17b078...3da3e5 )
by
unknown
14:54
created
typo3/sysext/backend/Classes/Form/FormDataProvider/TcaSelectItems.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
                     $direction = strtolower($direction);
293 293
                     @usort(
294 294
                         $items,
295
-                        function ($item1, $item2) use ($direction) {
295
+                        function($item1, $item2) use ($direction) {
296 296
                             if ($direction === 'desc') {
297 297
                                 return strcasecmp($item1[0], $item2[0]) <= 0;
298 298
                             }
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
                     $direction = strtolower($direction);
305 305
                     @usort(
306 306
                         $items,
307
-                        function ($item1, $item2) use ($direction) {
307
+                        function($item1, $item2) use ($direction) {
308 308
                             if ($direction === 'desc') {
309 309
                                 return strcasecmp($item1[1], $item2[1]) <= 0;
310 310
                             }
Please login to merge, or discard this patch.