Bug #31799
closedExtbase dispatcher registration causes PHP warning in t3lib_loadModules
0%
Description
Class t3lib_loadModules parses TBE_MODULES (BE modules) and applies various checks on the BE modules.
The TBE_MODULES is an array of key-value pairs; the value being a comma-separated list of submodules.
The Extbase dispatcher registration however looks like this:
$TBE_MODULES['_dispatcher'][] = 'Tx_Extbase_Dispatcher';
and such TBE_MODULES value is an array.
This causes a PHP warning in t3lib_loadModules::parseModulesArray() (expects string only).
Solution is to remove dispatcher part before passing TBE_MODULES to t3lib_loadModules::parseModulesArray().
This has been done on May 27, 2010 with #M13604 for TYPO3 4.4+ (leaving 4.3 aside).
Updated by Mr. Hudson about 13 years ago
- Status changed from New to Under Review
Patch set 1 of change I971df70d12a9c44e1947d9f5a9e31b434bdc3a32 has been pushed to the review server.
It is available at http://review.typo3.org/6666
Updated by Steffen Gebert over 12 years ago
- Status changed from Under Review to Rejected
no 4.3 release anymore..