I couldnt find this in the bug database but wanted to make sure I wasnt dreaming
Version 4.5.3
Have a tab set up to be the User Page (registration and account maintenace)
Allow public registration
- User skin object tries to load a control of return url - url looks like this (http://www.domain.com/Profile/tabid/188/ctrl/returnurl/Default.aspx)
I fixed line 142 of the user skin object codebehind from
Response.Redirect(NavigateURL(PortalSettings.UserTabId, "returnurl=" & ReturnUrl), True)
to
Response.Redirect(NavigateURL(PortalSettings.UserTabId,"","returnurl="& ReturnUrl),True)
Has anybody else seen this?