 |
Moderator
|
|
Posts: 1,116
Join Date: Mar 2006
|
|
|

10-11-2006, 03:41 PM
Quote:
Originally Posted by MSeven
Acknowledge the notice. But nope, it didn't work.
|
Ok, try this.....
PHP Code:
{foreach name=outer item=section from=$breadcrumb}
{foreach item=item from=$section}
{assign var=section value=$item|strip_tags}
{/foreach}
{/foreach}
{if $section==""}
<!-- // Header // -->
<div id="header"><a href="index.php"><img src="templates/{$smarty.const.MAIN_TEMPLATE}/images/header.gif" width="633" height="93" border="0" alt="{$title}" /></a></div>
<!-- // Header // -->
{else}
<!-- // Header // -->
<div id="header"><a href="index.php"><img src="templates/{$smarty.const.MAIN_TEMPLATE}/images/{$item}.gif" width="633" height="93" border="0" alt="{$title}" /></a></div>
<!-- // Header // -->
{/if}
{assign var=item value=""}
|