dont redirect back to reset password after login

v1.18.x
Baris Usakli 12 years ago
parent 7d50551392
commit 9c14618d55

@ -32,8 +32,10 @@
$('#login-error-notify').show();
} else {
$('#login-error-notify').hide();
//window.location.replace(RELATIVE_PATH + "/?loggedin");
history.go(-1);
if(app.previousUrl.indexOf('/reset/') != -1)
window.location.replace(RELATIVE_PATH + "/?loggedin");
else
window.location.replace(app.previousUrl + "?loggedin");
app.loadConfig();
}

Loading…
Cancel
Save