pre_controller hook does not load base classes like docs state?
问题 According to the Codeignitor docs here: http://ellislab.com/codeigniter/user-guide/general/hooks.html it states: pre_controller Called immediately prior to any of your controllers being called. All base classes, routing, and security checks have been done. However, if I create a hook pre_controller hook with: $hook['pre_controller'][] = array( 'class' => 'tester', 'function' => 'test', 'filename' => 'tester.php', 'filepath' => 'models', //'params' => array('beer', 'wine', 'snacks') ); and the