Hi
I have set up a custom BB Code like that:
[custom]search1 +search2[/custom]
where the html code for that looks like:
Code:
<a href="http://www.xyz.com/search.php?s={param}>Search for: {param}</a>
The problem is that {param} while equal to "search1 +search2" brings the result, which is not html parsed:
Code:
http://www.xyz.com/search.php?s=search1%20+search2
if that would be fully htmlentities parsed, link should be like that:
Code:
http://www.xyz.com/search.php?s=search1%20%2Bsearch2
The problem is parsing of "+" to "%2B".
The question: how can I set {param} to be fully html-parsed?