Replace only base URL in login redirect URL, fixes #5205

v1.18.x
Stuart Williams 8 years ago
parent 1617c99e7b
commit f92758c764

@ -104,7 +104,7 @@ Controllers.login = function (req, res, next) {
var registrationType = meta.config.registrationType || 'normal';
var allowLoginWith = (meta.config.allowLoginWith || 'username-email');
var returnTo = (req.headers['x-return-to'] || '').replace(nconf.get('url'), '');
var returnTo = (req.headers['x-return-to'] || '').replace(nconf.get('base_url'), '');
var errorText;
if (req.query.error === 'csrf-invalid') {

Loading…
Cancel
Save