Welcome Guest, Not a member yet? Register   Sign In
config->load(‘xxx’, TRUE); in autoload.php ?
#2

[eluser]xwero[/eluser]
It's not possible with the autoload. Loader library snippet
Code:
function _ci_autoloader()
    {
        include_once(APPPATH.'config/autoload'.EXT);

        if ( ! isset($autoload))
        {
            return FALSE;
        }

        // Load any custom config file
        if (count($autoload['config']) > 0)
        {
            $CI =& get_instance();
            foreach ($autoload['config'] as $key => $val)
            {
                $CI->config->load($val);
            }
        }


Messages In This Thread
config->load(‘xxx’, TRUE); in autoload.php ? - by El Forum - 10-20-2008, 01:27 AM
config->load(‘xxx’, TRUE); in autoload.php ? - by El Forum - 10-20-2008, 01:39 AM
config->load(‘xxx’, TRUE); in autoload.php ? - by El Forum - 10-20-2008, 01:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB