Not sure if this is quite the right place, but it's as close as I can find.
I have an Auth System I created so that during login I can synch some data with an external system.
Other than that, it's the standard DNN login functionality.
DNN 5.2.3 if that makes any difference
Part of this is a custom registration module, which is on a page specified as the user registration page in the site settings.
Now when a new user registers, all works as I expect.
But when a register user clicks on their name, it takes them to that page, but the registration moduel details are blank instead of filling in with their name and email.
I've tracked the cause down to the AddUser/IsUser properties not being what I expect.
http://localhost/MyHomepage/UpdateYou... gives me the problem
http://localhost/MyHomepage/UpdateYou... fixes it.
So it looks to me like the autoredirect on the register link fails to include the userID in the URL, and the UserModuleBase does not handle it properly.
Any advice/suggestions/upgrade options?