Topic: Two issues with 1.9 - headers already sent / category count
I just installed 1.9 and firstly if I change the theme to hireme in the admin section I get the following error log:
PHP Warning: Cannot modify header information - headers already sent by .../_templates/hireme/_cache/%%F7^F7F^F7F34188%%header.tpl.php on line 4
Secondly I would like the job count to display next to the category list, similar to the stats on the sidebar. I see that the function is called using {$categories[tmp].categ_count} in the following code:
{section name=tmp loop=$categories}
<li id="{$categories[tmp].var_name}" {if $current_category == $categories[tmp].var_name}class="selected"{/if}><a href="{$BASE_URL}{$URL_JOBS}/{$categories[tmp].var_name}/" title="{$categories[tmp].name}">{$categories[tmp].name}<span>({$categories[tmp].categ_count})</span></a></li>
{/section}
However all that is displayed is two brackets () with no count in the middle. Does anyone know how I can solve these two issues? Any help would be much appreciated.