Searched for a while now. I'm using newest Joomla Version 3.3.6 (with Gantry Framework) and am trying to create an own component for it. The problem I have is: I need to use links that contain special characters like spaces. Joomla seems to encode or rewrite these links and replaces the special characters with HTML code.
Example out of my components view file (hard coded):
<a href="index.html#test like" title="test like">test like</a>
Becomes when opened in frontend:
<a href="index.html#test%20like" title="test like">test like</a>
I'm now looking for the function that does this "trick" to hack this behaviour out of it, but can't find it yet. Hope someone can help me.