Thread: Category Titles
View Single Post
  #9  
Old 11-09-2006, 08:46 AM
 
nevets1219 nevets1219 is offline
 

eXpert
  
Join Date: Jun 2006
Posts: 351
 

Default Re: Category Titles

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%}&nbsp;::&nbsp;{/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%}&nbsp;::&nbsp;{/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 &amp; but leave everything else as raw text, whereas escape will convert everything not just & (ie & to &amp; but it leaves &amp; alone as plain text). Seems like both does the same thing but escape does more.
__________________
4.1.8
Reply With Quote