Hey, if I try to load my header which includes fuel_nav() from a controller or a 404 file CI doesn't find this function. Is there a way to use it anyway?
If you look at the fuel/application/errors/error_404.php file you'll see that require_once is used to include helpers that are needed to render certain pages. In this case you could use require_once(FUEL_PATH.'helpers/my_helper.php');
Comments