Actions
Bug #48799
closedEM: extension list is empty
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2013-06-03
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.7
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
The dependancy function is wrong. The EM shows an empty extension list.
This will fix it:
final class tx_em_Tools { ... public static function depToString($dep, $type = 'depends') { if (is_array($dep) && is_array($dep[$type])) { unset($dep[$type]['php']); unset($dep[$type]['typo3']); $s = (count($dep[$type])) ? implode(',', array_keys($dep[$type])) : ''; return $s; } return ''; } ... }
Actions