[eluser]Tom Vogt[/eluser]
Why does the get_instance() call in following code not work? It tells me "undefined function get_instance()" and I don't understand why:
Code:
class MY_Language extends CI_Language {
public $ci;
public function __construct() {
parent::__construct();
$this->ci =& get_instance();
}