OK, then I believe
location.tpl should go from
Code:
{* $Id: location.tpl,v 1.14 2005/11/17 06:55:36 max Exp $ *}
{if $location}
<font class="NavigationPath">
{strip}
{section name=position loop=$location}
{if $location[position].1 ne "" }<a href="{$location[position].1|amp}">{/if}
{$location[position].0}
{if $location[position].1 ne "" }</a>{/if}
{if not %position.last%} :: {/if}
{/section}
{/strip}
</font>
<br /><br />
{/if}
to
Code:
{* $Id: location.tpl,v 1.14 2005/11/17 06:55:36 max Exp $ *}
{if $location}
<font class="NavigationPath">
{strip}
{section name=position loop=$location}
{if $location[position].1 ne "" }<a href="{$location[position].1|amp}">{/if}
{$location[position].0|amp}
{if $location[position].1 ne "" }</a>{/if}
{if not %position.last%} :: {/if}
{/section}
{/strip}
</font>
<br /><br />
{/if}
Would you recommend I forget the
amp and just use
esacpe? If I understand you correctly,
amp will ONLY convert
& to
& but leave everything else as raw text, whereas escape will convert everything not just
& (ie
& to
& but it leaves
& alone as plain text). Seems like both does the same thing but
escape does more.