Actions
Bug #24856
closedLegacy extension manager does not allow to change category of configuration anymore
Start date:
2011-01-27
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When using TemplaVoila in EM (both new and legacy), a dropdown is used to show the two categories of settings (Basic / Static DS). However the change of category is not possible anymore in legacy EM.
javascript error "abc is not defined"
I guess the code has been updated to work with ExtJS but as legacy EM has been "reactivated" for LTS, it does not work anymore there.
(issue imported from #M17363)
Files
Updated by Matthias Kappenberg almost 14 years ago
Hmmm, I got the same problem.
I've solved it in the:
typo3/sysext/em/classes/install/class.tx_em_install.php
Line: 1312
from
$menu = str_replace('jumpToUrl', 'abc', $menu);
to
$menu = str_replace('jumpToUrl', 'jumpToUrl', $menu);
Hopefully this is helpy.
Ok, maybe the str_replace is useless now....
Actions