Actions
Bug #39434
closedLocalconf upgrade wizard fails
Start date:
2012-08-01
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.0
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Converting localconf.php to LocalConfiguration.php
with the installtool upgrade-wizard fails on my
Debian Squeeze installation.
There is a line in class.tx_coreupdates_localconfiguration.php
eval(implode(LF, $typo3ConfigurationVariables));
This caused some weird (!") errors on my Debian-Squeeze Server.
I changed this to
$tmp = implode(LF, $typo3ConfigurationVariables);
eval($tmp);
and the wizard worked as expected.
Actions