From 5e695d32227a08b388c9fb4dfd62b53819ccbf4a Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 17 Jan 2014 12:02:12 -0500 Subject: [PATCH] fixed incorrect language string used in fb button in default motd --- src/routes/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/api.js b/src/routes/api.js index dd6bdaf757..44a155370f 100644 --- a/src/routes/api.js +++ b/src/routes/api.js @@ -72,7 +72,7 @@ var path = require('path'), if (!meta.config.motd) { // Construct default MOTD translator.mget(['global:motd.welcome', 'global:motd.get', 'global:motd.fork', 'global:motd.like', 'global:motd.follow'], function(err, strings) { - motdString = '
 ' + strings[1] + ' ' + strings[2] + ' ' + strings[4] + ' ' + strings[4] + '
\n\n# NodeBB v' + pkg.version + '\n' + strings[0]; + motdString = '
 ' + strings[1] + ' ' + strings[2] + ' ' + strings[3] + ' ' + strings[4] + '
\n\n# NodeBB v' + pkg.version + '\n' + strings[0]; }); } else { motdString = meta.config.motd;