Robbo
Well-known member
All that needs to happen is this in the autoloader...
I am overwriting this currently but would rather not be...
Code:
public function autoloaderClassToFile($class)
{
if (preg_match('#[^a-zA-Z0-9_\\\]#', $class))
{echo $class;
return false;
}
return $this->_rootDir . '/' . str_replace(array('\\', '_'), '/', $class) . '.php';
}
I am overwriting this currently but would rather not be...
Upvote
0