diff --git a/public/templates/outgoing.tpl b/public/templates/outgoing.tpl index 80407d570c..37ae257dd4 100644 --- a/public/templates/outgoing.tpl +++ b/public/templates/outgoing.tpl @@ -10,11 +10,11 @@

- You are now leaving NodeBB. + You are now leaving {title}.

Continue to {url} - Return to NodeBB + Return to {title}

diff --git a/src/routes/api.js b/src/routes/api.js index 0788dd0cbe..3d382ee490 100644 --- a/src/routes/api.js +++ b/src/routes/api.js @@ -190,7 +190,8 @@ var user = require('./../user.js'), if (url) { res.json({ - url: url + url: url, + title: meta.config.title }); } else { res.status(404);