From 7f6edda46321c8160bd051f128735fa5d6aacdf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20P=C3=B5ldaru?= Date: Fri, 23 Dec 2011 16:54:53 +0200 Subject: [PATCH] Add a missing pair of quotes to fix #354. --- openlp/plugins/remotes/html/openlp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/remotes/html/openlp.js b/openlp/plugins/remotes/html/openlp.js index 0972a6637..684c77467 100644 --- a/openlp/plugins/remotes/html/openlp.js +++ b/openlp/plugins/remotes/html/openlp.js @@ -208,7 +208,7 @@ window.OpenLP = { }, showAlert: function (event) { event.preventDefault(); - var text = "{\"request\": {\"text\": " + $("#alert-text").val() + "}}"; + var text = "{\"request\": {\"text\": \"" + $("#alert-text").val() + "\"}}"; $.getJSON( "/api/alert", {"data": text},