why does :
<?php
  echo link_to('test link','mymodule/myaction?param1=
val1.val2&param2=val3.val4');
?>
generates :

<a href="http://myapp/mymodule/myaction/param1/val1.val2/param2/val3.val4";>test
link</a>

wich contains "." and "/" character that should be encoded...
how can the "link_to()" helper generate an url containing properly encoded
characters ?

for instance :

<a href="
http://myapp/mymodule/myaction/param1/val1%2Eval2/param2/val3%2Eval4";>test
link</a>

thanks for helping

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to