in ControllerFactory.php:

$customClass = 'Custom' . $class;
if(file_exists('custom/modules/'.$module.'/controller.php')){
$customClass = 'Custom' . $class;

Can be rewritten as:

$customClass = 'Custom' . $class;
if(file_exists('custom/modules/'.$module.'/controller.php')){

Defect / 550RC3 / System Internal