From 94efa6dd87f7c44f457e1f8ed762cc6fa5f0e910 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Thu, 11 Dec 2014 10:02:17 -0500 Subject: [PATCH] closes #2520 --- src/routes/authentication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/authentication.js b/src/routes/authentication.js index 106d555992..0b7cc58f3c 100644 --- a/src/routes/authentication.js +++ b/src/routes/authentication.js @@ -249,7 +249,7 @@ return res.status(400).send(err.message); } - res.status(200).send(data.referrer ? data.referrer : '/'); + res.status(200).send(data.referrer ? data.referrer : nconf.get('relative_path') + '/'); }); }