Welcome Guest, Not a member yet? Register   Sign In
Function set_magic_quotes_runtime() is deprecated
#14

[eluser]coolcom[/eluser]
The error is in this function:

Code:
private function _assign_libraries()
    {
        if ($core = end(modules::$registry))
        {            
            foreach (get_object_vars($core) as $key => $object)
            {
                if (is_object($object) AND ! isset($this->$key))
                    
                    $this->$key = $object;    
            }
        }
        else /* executes only for the first controller */
        {
            /* the CI core classes */
            $classes = array(
                'config'    => 'Config',
                'input'        => 'Input',
                'benchmark'    => 'Benchmark',
                'uri'        => 'URI',
                'output'    => 'Output',
                'lang'        => 'Language',
                'router'    => 'Router',
            );
            
            /* assign the classes */
            foreach ($classes as $key => $class)
            {
                $this->$key = load_class($class);    
            }
            
            /* initialize CI_Base */
            CI_Base::__construct();
        }
    }

And in particually line 109 which is:

Code:
CI_Base::__construct();


Messages In This Thread
Function set_magic_quotes_runtime() is deprecated - by El Forum - 12-30-2009, 05:16 PM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 12-30-2009, 06:13 PM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 12-30-2009, 07:54 PM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-01-2010, 09:05 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-01-2010, 09:44 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-01-2010, 01:06 PM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-03-2010, 04:50 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-05-2010, 04:38 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-05-2010, 06:50 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-05-2010, 07:20 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-05-2010, 07:30 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-05-2010, 08:12 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-05-2010, 09:00 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-05-2010, 09:05 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 05-09-2010, 09:48 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 06-15-2010, 09:27 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 01-03-2011, 04:12 AM
Function set_magic_quotes_runtime() is deprecated - by El Forum - 04-18-2011, 11:19 PM



Theme © iAndrew 2016 - Forum software by © MyBB