views:

20

answers:

1

This code

 $html->link(" »", '/events/view/'.$event['Event']['id']), array('escape'=>false,'class'=>'more') )

Outputs

<a href="/events/view/4"> &amp;raquo;</a>

instead of >>

Any idea?

+2  A: 

basically you have syntax error instead you should have:

$this->Html->link(" &raquo;", '/events/view/'.$event['Event']['id'], array('escape'=>false,'class'=>'more') );

At least that's what I see.

Nik
Thank Nik, it's a matter of ) :D
Moe Sweet