This code
$html->link(" »", '/events/view/'.$event['Event']['id']), array('escape'=>false,'class'=>'more') )
Outputs
<a href="/events/view/4"> &raquo;</a>
instead of >>
Any idea?
This code
$html->link(" »", '/events/view/'.$event['Event']['id']), array('escape'=>false,'class'=>'more') )
Outputs
<a href="/events/view/4"> &raquo;</a>
instead of >>
Any idea?
basically you have syntax error instead you should have:
$this->Html->link(" »", '/events/view/'.$event['Event']['id'], array('escape'=>false,'class'=>'more') );
At least that's what I see.