Project

General

Profile

Bug #40069 » class.t3lib_extmgm.php.1.diff

Alexander Opitz, 2012-08-23 09:19

View differences:

class.t3lib_extmgm.php
if (is_array($conf)) {
if ($conf['ext_localconf.php']) {
$cFiles['ext_localconf'] .= self::_makeIncludeHeader($key, $conf['ext_localconf.php']);
$cFiles['ext_localconf'] .= trim(t3lib_div::getUrl($conf['ext_localconf.php']));
$cFiles['ext_localconf'] .= preg_replace(
'/declare\s*\(\s*encoding[^;]*/u',
'',
trim(t3lib_div::getUrl($conf['ext_localconf.php']))
);
}
if ($conf['ext_tables.php']) {
$cFiles['ext_tables'] .= self::_makeIncludeHeader($key, $conf['ext_tables.php']);
$cFiles['ext_tables'] .= trim(t3lib_div::getUrl($conf['ext_tables.php']));
$cFiles['ext_tables'] .= preg_replace(
'/declare\s*\(\s*encoding[^;]*/u',
'',trim(t3lib_div::getUrl($conf['ext_tables.php']))
);
}
}
}
(1-1/2)