different layouts with the same block show different detail?!?
We have a development site where the home page uses no layout but references a view in the _blocks folder for the header and nav. We have all the interior pages use a layout (main.php) that references the same view for the header. When I visit the home page my nav renders with all my current edits. Then when I visit an interior page I don't see my edits. I've cleared my browser's cache -- to no avail. Is there some sort of caching going on within Fuel that could be causing this?
This is what I have for the 1st lines in views/home.php:
<? fuel_set_var('layout', '') // NO LAYOUT, home page is unique ?>
<? $this->load->view('_blocks/header')?>
This is what I have for the first lines in _layouts/main.php:
<? $this->load->view('_blocks/header');?>
Comments