From acd797fe207836896eb86f5d453a7dcf23bd1eef Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Thu, 23 May 2013 13:04:25 -0400 Subject: [PATCH 1/2] changed github link on home --- src/webserver.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webserver.js b/src/webserver.js index 47901413fc..e454360009 100644 --- a/src/webserver.js +++ b/src/webserver.js @@ -115,7 +115,7 @@ var express = require('express'), case 'home' : categories.getAllCategories(function(data) { data.motd_class = (config.show_motd || config.show_motd === undefined) ? '' : 'none'; - data.motd = marked(config.motd || "# NodeBB v0.1\nWelcome to NodeBB, the discussion platform of the future.\n\n Get NodeBB Fork us on Github @dcplabs"); + data.motd = marked(config.motd || "# NodeBB v0.1\nWelcome to NodeBB, the discussion platform of the future.\n\n Get NodeBB Fork us on Github @dcplabs"); res.send(JSON.stringify(data)); }, (req.user) ? req.user.uid : 0); break; From f4218264e2669a66473e53a3d12aa0ab19354c66 Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Thu, 23 May 2013 13:09:30 -0400 Subject: [PATCH 2/2] successful >:) --- public/src/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/app.js b/public/src/app.js index 198cef6d51..a95e2ab459 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -41,7 +41,7 @@ var socket, app.alert({ alert_id: 'connection_alert', title: 'Connected', - message: 'Connection successfull', + message: 'Connection successful', type: 'success', timeout: 5000 });