Hello,
I have found a bug related to the order of executing (in bootstrap.php) of the
Front Controller's (FC) setModuleControllerDirectoryName method
and of the FC's addModuleDirectory method.
In this case:
$frontController->addModuleDirectory(APPLICATION_PATH . '/modules');
$frontController->setModuleControllerDirectoryName('admin/controllers');
the correct Controller directory simply won't be used. If the other sequence is
used, everything works just fine. Tested under version 1.9.2.
Mainly, my question is: is this the desired behaviour or just a bug? If desired
behaviour, why?
Thanks.