[eluser]Unknown[/eluser]
I saw the same problem, but fixed it in a different way. I changed _ci_init_class() in Loader.php to the following:
// Is there an associated config file for this class?
if ($config === NULL)
{
$config = NULL;
if (file_exists(APPPATH.'config/'.$class.EXT))
{
include(APPPATH.'config/'.$class.EXT);
}
elseif (file_exists(APPPATH.'config/'.strtolower($class).EXT))
{
include(APPPATH.'config/'.strtolower($class).EXT);
}
That way it checks for both the mixed and lowercase versions of the config name. I think a lot of other things are checked for this way as well. Not sure why they missed this one...