I found the problem via a process of elimination.
It only happened on the home page, right and left blocks looked ok so it had to be a centre block misbehaving.
Foudn that it was 'Most Popular Topics' block for newbb which was playing up. Making invisble fixed the problem.
Quote:
<{if $block.disp_mode == 0}>
<{$smarty.const._MB_NEWBB_FORUM}>
<{$smarty.const._MB_NEWBB_TITLE}>
<{$smarty.const._MB_NEWBB_RPLS}>
<{$smarty.const._MB_NEWBB_VIEWS}>
<{foreach item=topic from=$block.topics}>
">
<{$topic.forum_name}>
<{if $topic.topic_subject}> <{$topic.topic_subject}> <{/if}> <{$topic.title}>
<{$topic.replies}>
<{$topic.views}>
<{/foreach}> <{elseif $block.disp_mode == 1}>
<{$smarty.const._MB_NEWBB_TOPIC}>
<{$smarty.const._MB_NEWBB_AUTHOR}>
<{foreach item=topic from=$block.topics}>
">
<{if $topic.topic_subject}> <{$topic.topic_subject}> <{/if}> <{$topic.title}><{$topic.topic_page_jump}>
<{$topic.time}>
<{$topic.topic_poster}>
<{/foreach}> <{elseif $block.disp_mode == 2}> <{foreach item=topic from=$block.topics}>
">
<{if $topic.topic_subject}> <{$topic.topic_subject}> <{/if}> <{$topic.title}>
<{/foreach}> <{/if}>
<{if $block.indexNav}>
<{/if}>
I wanted to take the full view version of this block and adjust to show:-
Topic Title, replies and Views only
I thought i'd done that successfully (seemed pretty simple change to make) but it wasn't and caused this problem.
can anyone suggest another fix for this?
thanks
Andrew