mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-09 01:16:08 +01:00
84856e0973
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>
21 lines
531 B
PHP
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(),
|
|
),
|
|
);
|