Also add relative_path to destination

Because the destination url does not include the relative_path
v1.18.x
Charles 11 years ago
parent ce083573a9
commit 5f1b1ad2bf

@ -110,8 +110,8 @@
require('../socket.io').emitUserCount(); require('../socket.io').emitUserCount();
plugins.fireHook('filter:register.complete', uid, req.body.referrer, function(err, uid, destination) { plugins.fireHook('filter:register.complete', uid, req.body.referrer, function(err, uid, destination) {
if(destination) { if (destination) {
res.redirect(destination); res.redirect(nconf.get('relative_path') + destination);
} else { } else {
res.redirect(nconf.get('relative_path') + '/'); res.redirect(nconf.get('relative_path') + '/');
} }

Loading…
Cancel
Save