Hi -
I have a URL I’m trying to form that looks like this:
<a href="http://{path=somewhere/{username}}">Link</a>The URL that is outputted is this, which is broken because somewhere the closing bracket gets stripped from username:
<a href="http://myurl.com/somewhere/{username}">http://myurl.com/somewhere/{username'}</a>If I hack it to this (missing closing single quote mark) all seems to be well:
<a href="http://{path=somewhere/{username}}">Link</a>Returns as designed:
<a href="http://myurl.com/somewhere/myusername">http://myurl.com/somewhere/myusername</a>It seems that this same issue is causing errors in redirects as well:
{redirect='somewhere/{username}'}Redirects to here as a broken URL:
<a href="http://myurl.com/somewhere/{username">http://myurl.com/somewhere/{username</a>
Using:
EE 2.2.0
Solspace User 3.3.2
Any help or suggestions would be appreciated.
Thanks.