Extending the Module Controller

I've overridden the Module controller to add some customizations. It works great, though I think I found an issue at line 1336 of /fuel/modules/fuel/controllers/module.php:

$this->load->model('assets_model');

This fails with an error that it cannot find the model, since it's a module model. I think it should be:

$this->load->module_model(FUEL_FOLDER, 'assets_model');

Comments

Sign In or Register to comment.