Hey guys, not sure if this is the right forum, but here goes.
I have activated the public registration link on the default login module, which brings up a modal dialog with the registration form in it. By default, the skin file is retrieved by this piece of code in the default.aspx.cs:
((PortalSettings)HttpContext.Current.Items["PortalSettings"]).ActiveTab.SkinPath;
Now, this function is returning the default skin "/Portals/_default/Skins/_default/" instead of the skin I want "/Portals/_default/Skins/Myskin/"
Obviously, that is not what i want.
I did a little digging, and it looks like the ActiveTab.SkinSrc = "/Portals/_default/skins/MySkin/MySkin.ascx", so the source is correct, but the skinpath is wrong, so it still loads the default skin. Also,
Also, the ActiveTab.TabName, which should be "Login", displays "Dashboard", which is the name of another tab on my site. The tabids and related data seem to support the idea that the popup thinks it is loading another page, but is unable to find the skin file anyways.
Any Ideas out there? Or a suggestion to be a better forum?