Project

General

Profile

Actions

Bug #48799

closed

EM: extension list is empty

Added by Franz Holzinger over 11 years ago. Updated almost 10 years ago.

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 #1

Updated by Benni Mack almost 10 years ago

  • Status changed from New to Closed
  • Is Regression set to No

Hey Franz. This problem is solved by migrating to the new extension manager (which has in turn new issues, but they are already in the issue tracker). If you have the same issue with the new Extension Manager, drop me a note, I will open up a new issue then. Thanks for the report!

Actions

Also available in: Atom PDF