if nodebb returns 403/404, don't overwrite previousUrl. If you don't do this, when logging in after a 403/404, it will redirect you to the 403/404 page.

v1.18.x
Andrew Darqui 12 years ago
parent 0b299b2fe7
commit ef47f3fd15

@ -117,7 +117,8 @@ var ajaxify = {};
if (hrefEmpty(this.href) || this.target !== '' || this.protocol === 'javascript:')
return;
app.previousUrl = window.location.href;
if(window.location.pathname != '/403' && window.location.pathname != '/404')
app.previousUrl = window.location.href;
if (!e.ctrlKey && e.which === 1) {
if (this.host === window.location.host) {
@ -192,4 +193,4 @@ var ajaxify = {};
}
}
}(jQuery));
}(jQuery));

Loading…
Cancel
Save