Fix failing search in filelist

To be removed after bug is fixed in ext:media
This commit is contained in:
Björn Fromme
2019-09-13 18:08:41 +02:00
parent 2161d52547
commit 41745869bd
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, 'clearCacheOnLoad' => 0,
'version' => '1.1.0', 'version' => '1.1.0',
'constraints' => [ 'constraints' => [
'depends' => [], 'depends' => [
'media' => '*'
],
'conflicts' => [], 'conflicts' => [],
'suggests' => [] 'suggests' => []
], ],