summaryrefslogtreecommitdiffstats
path: root/apps/comments/js/commentstabview.js
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-08-29 14:18:34 +0200
committerJoas Schilling <coding@schilljs.com>2016-08-29 14:18:34 +0200
commit28792a010c69e17b9fa20c95641d474822e64091 (patch)
tree5f2e6f836748159782c5bc8708325749c4f0f2c4 /apps/comments/js/commentstabview.js
parent3647fbe7cd86e743b059889d69b03fcf8207780f (diff)
downloadnextcloud-server-28792a010c69e17b9fa20c95641d474822e64091.tar.gz
nextcloud-server-28792a010c69e17b9fa20c95641d474822e64091.zip
Prevent parse error on editing an HTML comment
Diffstat (limited to 'apps/comments/js/commentstabview.js')
-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}}" />' +