I have a variable in a .tpl file (smarty) The variable name is:
{$topic.url}
This variable returns a url. (It is not always the same url)
The problem: Some urls returned by this variable have accents.
Example:
http://someserver.com/forum/ántigüedad-con-énfasis
How I can do to remove all accents, and the variable return something like...
http://someserver.com/forum/antiguedad-con-enfasis
I have only access to the .tpl file, so I can not edit any php file. The solution should be added in the same .tpl file.
Thanks.