loginAdmin
- 20090626
- Log Out
- Add condition to check if in .aspx mode and logged in - to not display the log out feature
- Log Out feature - if you got back into .aspx mode but without logging in, logging out was displayed but you could not log out since that function was only part of admin code
- 20090507
- <Correct for root>
- When logging in from initial home page of a site, but you're at the root so there's no page (i.e. home_2.aspx), you can't redirect to the admin version so you log in, but you're not in admin mode
- Need to update loginAdmin function within siteFunctions.js
- See Template siteFunctions.js
- Just add
- //Correct for root
if(sPage.length < 3){
sPage = 'home_2.aspx';
}