feedit/ext_emconf.php
Christian Kuhn 84856e0973 [TASK] Clean up ext_emconf files
The md5 value is not handled in core for quite a while
and removed together with some obsolete locallang flags
and further test related ext_emconf settings.

Resolves: #67979
Releases: master
Change-Id: I86804f732f7f32cf94aab7d18dfab79cdf67e458
Reviewed-on: http://review.typo3.org/41005
Reviewed-by: Morton Jonuschat <m.jonuschat@mojocode.de>
Tested-by: Morton Jonuschat <m.jonuschat@mojocode.de>
Reviewed-by: Frank Nägler <frank.naegler@typo3.org>
Tested-by: Frank Nägler <frank.naegler@typo3.org>
2015-07-08 20:49:47 +02:00

21 lines
531 B
PHP

<?php
$EM_CONF[$_EXTKEY] = array(
'title' => 'Frontend Editing',
'description' => '',
'category' => 'fe',
'author' => 'Jeff Segars, David Slayback',
'author_email' => 'jeff@webempoweredchurch.org, dave@webempoweredchurch.org',
'author_company' => 'Web-Empowered Church',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '7.4.0',
'constraints' => array(
'depends' => array(
'typo3' => '7.4.0-7.4.99',
),
'conflicts' => array(),
'suggests' => array(),
),
);