Mine is like this..
Code:
{* $Id: location.tpl,v 1.13 2004/05/29 14:21:41 svowl Exp $ *}
{if $location}
<FONT class="NavigationPath">
{strip}
{section name=position loop=$location}
{if $location[position].1 ne "" }
{* SAFETYNET DSEFU MOD *}
{if $location[position].0 ne "home.php"}
{if $enable_seo_links == "Y"}
<A href="{seo_link location_name=$location[position].0 location_link=$location[position].1}" class="NavigationPath">
{else}
<A href="{$location[position].1}" class="NavigationPath">
{/if}
{else}
<a href="{$http_location}/" class="NavigationPath">
{/if}
{* END SAFETYNET DSEFU MOD *}
{/if}
{if $location[position].0 eq $config.Company.company_name}
Home
{else}
{$location[position].0}
{/if}
{if $location[position].1 ne "" }</A>{/if}
{if not %position.last%}\{/if}
{/section}
{/strip}
</FONT>
{/if}
The change is the addition of
{if $location[position].0 eq $config.Company.company_name}
Home
{else}
I hope this helps.