Bug #40155
Task #40095: Move core to namespaces
browse_links.php instantiates wrong class namespace
Status: | Closed | Start date: | 2012-08-25 | |
---|---|---|---|---|
Priority: | Must have | Due date: | ||
Assigned To: | - | % Done: | 100% |
|
Category: | - | Spent time: | - | |
Target version: | - | |||
TYPO3 Version: | 6.0 | Is Regression: | ||
PHP Version: | Sprint Focus: | |||
Complexity: |
Description
typo3/browse_links.php contains:
makeInstance('SC_TYPO3\\CMS\\Recordlist\\Browser\\ElementBrowser');
which should be
makeInstance('TYPO3\\CMS\\Recordlist\\Browser\\ElementBrowser');
I suppose
and then there is a call to $OBE->main()
which causes a fatal error, since the ElementBrowser class does not have a method named main()
Parent task: #40095
(Can't access that field here in bugtracker)
Related issues
History
#1 Updated by Christian Kuhn almost 3 years ago
- Parent task set to #40095
#2 Updated by Steffen Gebert almost 3 years ago
- Status changed from New to Accepted
#3 Updated by Christian Kuhn almost 3 years ago
- Status changed from Accepted to Closed
- % Done changed from 0 to 100
fixed with #40203