If I specify a Header for a block view as PHP Code for the input filter as follows:
<div id="photos"><h1>Photos</h1>
<?php
$g = og_get_group_context();
($g) ? print l('view all', 'business/photos', array('query' => 'gids[]='.$g->nid)) : '';
?>
and a Footer as Full HTML with the following:
</div>
The view will then wrongly output the Header directly followed by the Footer and then the Rows Content.
My workaround to prevent this is to change the Footer input from Full HTML to PHP Code and then the output is in the correct order Header->Rows Content->Footer
Comments
Comment #1
dawehnerCould it be that your input format yes the html corrector filter enabled?
this will perhaps do this stuff
Comment #2
esmerel commentedNo response to suggested fix.