function &load_class($class, $instantiate = TRUE)
{
static $objects = array();
// Does the class exist? If so, we're done...
if (isset($objects[$class])){
return $objects[$class];
}
}
function CI_Router()
{
$this->config =& load_class('Config');
$this->uri =& load_class('URI');
$this->_set_routing();
log_message('debug', "Router Class Initialized");
}