On 11/4/2009 12:23 PM, kicaj wrote:
> $html->link('<span>'. __('text', true) .'</span>'), '#');
- you're not echoing this;
- you have a syntax error there;
- you're escaping the link title;
For CakePHP 1.2 use:
echo $html->link('<span>'. __('text', true) .'</span>', '#', array(),
false, false);
For CakePHP 1.3 use:
echo $html->link('<span>'. __('text', true) .'</span>', '#',
array('escape' => false), false);
http://api.cakephp.org/class/html-helper#method-HtmlHelperlink
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---