From a7216caa3b2db8eb331258f0df557b7f119b9fee Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Thu, 21 Nov 2013 22:15:04 -0500 Subject: [PATCH] closed #518 --- public/templates/outgoing.tpl | 4 ++-- src/routes/api.js | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) 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);