Given the fact there’s not too much to mess up here: below is my working example:
{exp:user:search form_name="member_search" return="{path=member/results}"}
<p><input type="text" name="keywords" value="" /></p>
<p><input type="submit" value="search" /></p>
<input type="hidden" name="user_orderby" value="username" />
{/exp:user:search}
I took a look at the output from the tag and it’s converting the forward slash in the return’s {path} variable to “& amp;#47” (no space betweeen amp and char. code).
<input type="hidden" name="return" value="http://www.fashiondiner.com/member& amp;#47;results/" />
This is not occurring with the RET vaule.
Any idea how to address?
Edit: while testing I tried removing the {path} variable and replacing with a relative path
return="my_template_group/my_results_tempate"
but this still exhibits the problem I’m observing and returns an “invalid URI” error.
