mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-09 01:16:08 +01:00
95c11059a0
The "do not touch me" comment header in ext_emconf.php files of system extensions are misleading since we are editing those files manually for years now. Remove those headers. Change-Id: I27f6253effa54dae7f92170175e7705cc706d03a Resolves: #60129 Releases: 6.3, 6.2 Reviewed-on: https://review.typo3.org/31405 Reviewed-by: Jigal van Hemert Tested-by: Jigal van Hemert
22 lines
571 B
PHP
22 lines
571 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' => '6.3.0',
|
|
'constraints' => array(
|
|
'depends' => array(
|
|
'typo3' => '6.3.0-6.3.99',
|
|
),
|
|
'conflicts' => array(),
|
|
'suggests' => array(),
|
|
),
|
|
'_md5_values_when_last_written' => '',
|
|
);
|