From 96225c59eccb511628c506bae89ac9c2f92ff638 Mon Sep 17 00:00:00 2001 From: Sam Nicholls Date: Wed, 5 Dec 2012 19:17:57 +0000 Subject: [PATCH] Got you some extra plus --- modules/quotes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/quotes.js b/modules/quotes.js index 371241b..abd2069 100644 --- a/modules/quotes.js +++ b/modules/quotes.js @@ -186,7 +186,7 @@ var quotes = function(dbot) { '~link': function(event) { var key = event.params[1].trim().toLowerCase(); if(quotes.hasOwnProperty(key)) { - event.reply(dbot.t('quote_link', {'category': key}) + ' - ' dbot.webUrl + ':' dbot.webPort + '/quotes/' + key); + event.reply(dbot.t('quote_link', {'category': key}) + ' - ' + dbot.webUrl + ':' + dbot.webPort + '/quotes/' + key); } else { event.reply(dbot.t('category_not_found')); }