summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2016-08-30 00:14:08 +0200
committerGitHub <noreply@github.com>2016-08-30 00:14:08 +0200
commit7278bd29872aa27ecfbb1974d373b1a3e29244df (patch)
treee5f9445d9415b2a8830922e24bdb4a48571193f4 /apps
parent1702abc2042f1c1c85df3886c477f9d1a31738cb (diff)
parent28792a010c69e17b9fa20c95641d474822e64091 (diff)
downloadnextcloud-server-7278bd29872aa27ecfbb1974d373b1a3e29244df.tar.gz
nextcloud-server-7278bd29872aa27ecfbb1974d373b1a3e29244df.zip
Merge pull request #1132 from nextcloud/prevent-parse-error-on-editing-an-html-comment
Prevent parse error on editing an HTML comment
Diffstat (limited to 'apps')
-rw-r--r--apps/comments/js/commentstabview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/js/commentstabview.js b/apps/comments/js/commentstabview.js
index 9451e828f91..eae18c1d485 100644
--- a/apps/comments/js/commentstabview.js
+++ b/apps/comments/js/commentstabview.js
@@ -32,7 +32,7 @@
'{{/if}}' +
' </div>' +
' <form class="newCommentForm">' +
- ' <input type="text" class="message" placeholder="{{newMessagePlaceholder}}" value="{{{message}}}" />' +
+ ' <input type="text" class="message" placeholder="{{newMessagePlaceholder}}" value="{{message}}" />' +
' <input class="submit icon-confirm" type="submit" value="" />' +
'{{#if isEditMode}}' +
' <input class="cancel pull-right" type="button" value="{{cancelText}}" />' +