Merge branch 'master' into develop

This commit is contained in:
Björn Fromme
2019-09-13 18:08:47 +02:00
2 changed files with 13 additions and 1 deletions
@@ -0,0 +1,10 @@
<?php
if (!defined('TYPO3_MODE')) die ('Access denied.');
$tca = [
'ctrl' => [
'default_sortby' => 'name DESC'
],
];
\TYPO3\CMS\Core\Utility\ArrayUtility::mergeRecursiveWithOverrule($GLOBALS['TCA']['sys_file'], $tca);
+3 -1
View File
@@ -14,7 +14,9 @@ $EM_CONF[$_EXTKEY] = [
'clearCacheOnLoad' => 0,
'version' => '1.1.0',
'constraints' => [
'depends' => [],
'depends' => [
'media' => '*'
],
'conflicts' => [],
'suggests' => []
],