[TYPO3-core] RFC #16008: A new TypoScript cObject: FLUIDTEMPLATE

Bastian Waidelich bastian at typo3.org
Mon Oct 25 13:36:39 CEST 2010


Bastian Waidelich wrote:

> I just looked into this and the problem is the line:
> if (!class_exists('Tx_Extbase_Utility_ClassLoader')) {
> This will never be TRUE, thus the autoloader won't be initialized.

By the way: Setting the second parameter of class_exists() in order to 
skip autoloading should do the trick too:
if (!class_exists('Tx_Extbase_Utility_ClassLoader', FALSE)) {

(untested)

Bastian


More information about the TYPO3-team-core mailing list