The html::link function will remove special characters by default, you
could try setting the escape option to false.

<?php echo $this->Html->link('Работы', array('controller' =>
'art_works', 'action' => 'show'), array('escape' => false)) ?>

On 13 nov, 00:04, Dobrogor <[email protected]> wrote:
> Hi all!
> I have a little problem.
> I want to use russian languale at my links in main menu. I create my
> links with html helper.
>
> For example, if i write  in code
> <?php echo $this->Html->link('Works', array('controller' =>
> 'art_works', 'action' => 'show')) ?>
>
> output will be like this
> <a href="/test/art_works/show">Works</a>
> Its work fine. 'test' - its my project name
>
> But if I wrote title of link in another language, like russian:
> <?php echo $this->Html->link('Работы', array('controller' =>
> 'art_works', 'action' => 'show')) ?>
>
> output will be like this
> <a href="/test/art_works/show"></a>
> Thats why link dont displayed....
>
> Please - help me frieds!!! I dont understand why its dont work. I
> almost finished my site, but i detected this problem. :(
>
> Thanks.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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

Reply via email to