mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-16 13:30:23 +01:00
refactor: revert, don't need to pass relative_path
This commit is contained in:
@@ -56,10 +56,7 @@ define('forum/login', ['hooks', 'translator', 'jquery-form'], function (hooks, t
|
||||
success: function (data) {
|
||||
hooks.fire('action:app.loggedIn', data);
|
||||
const pathname = utils.urlToLocation(data.next).pathname;
|
||||
const params = utils.params({
|
||||
url: data.next,
|
||||
relative_path: config.relative_path,
|
||||
});
|
||||
const params = utils.params({ url: data.next });
|
||||
params.loggedin = true;
|
||||
delete params.register; // clear register message incase it exists
|
||||
const qs = $.param(params);
|
||||
|
||||
@@ -83,10 +83,7 @@ define('forum/register', [
|
||||
if (data.next) {
|
||||
const pathname = utils.urlToLocation(data.next).pathname;
|
||||
|
||||
const params = utils.params({
|
||||
url: data.next,
|
||||
relative_path: config.relative_path,
|
||||
});
|
||||
const params = utils.params({ url: data.next });
|
||||
params.registered = true;
|
||||
const qs = $.param(params);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user