[eluser]Michel-Ange[/eluser]
@easylancer : I integrated the BrianDHall modifications. The downloadable ZIP contains them.
They are no short tags in the installer anymore.
The only CI hack is in CodeIgniter.php :
Code:
// Load the local application controller
// Note: The Router class automatically validates the controller path. If this include fails it
// means that the default controller in the Routes.php file is not resolving to something valid.
/*
if ( ! file_exists(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().EXT))
{
show_error('Unable to load your default controller. Please make sure the controller specified in your Routes.php file is valid.');
}
include(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().EXT);
*/
/**
* Begin addition
* Purpose: Enable Controller cascading
*/
if( ! $RTR->fetch_controller_path())
{
show_error('Unable to load your default controller. Please make sure the controller specified in your Routes.php file is valid.');
}
include($RTR->fetch_controller_path());
/*
* End Addition
*/
If you have another idea, I'm open to well coded suggestions !