Invalid subtopic. Can't load page.
lol when i did that i get this :/
PHP:Invalid subtopic. Can't load page.
what else do i need to do?
function LoginButtonAction()
{
if(loginStatus == "false") {
window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement";
} else {
window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement";
}
}
function LoginstatusTextAction(source) {
if(loginStatus == "false") {
window.location = LINK_ACCOUNT + "/?subtopic=createaccount";
} else {
window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement&action=logout";
}
}
function LoginButtonAction()
{
if(loginStatus == "false") {
window.location = "/?subtopic=accountmanagement";
} else {
window.location = "/?subtopic=accountmanagement";
}
}
function LoginstatusTextAction(source) {
if(loginStatus == "false") {
window.location = "/?subtopic=createaccount";
} else {
window.location = "/?subtopic=accountmanagement&action=logout";
}
}