Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2016-08-30 01:14:55 +0300
committerGitHub <noreply@github.com>2016-08-30 01:14:55 +0300
commit9b29ed08c5c30318b42e6d43a1dd062e0f9bf695 (patch)
tree6e1a310b95b73c2f0dd70e17a324e8cafea66c68
parente9fb2ec5f3c609a809034dec939e985cbae40796 (diff)
parent6a8deb4a1f934c39d68b62ec3b5581cc832e3ca5 (diff)
Merge pull request #1141 from nextcloud/backport-1132-prevent-parse-error-on-editing-an-html-comment-9
[stable9] Prevent parse error on editing an HTML comment
-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 415ec2a9be5..e05c5eca08b 100644
--- a/apps/comments/js/commentstabview.js
+++ b/apps/comments/js/commentstabview.js
@@ -31,7 +31,7 @@
'{{/if}}' +
' </div>' +
' <form class="newCommentForm">' +
- ' <textarea class="message" placeholder="{{newMessagePlaceholder}}">{{{message}}}</textarea>' +
+ ' <textarea class="message" placeholder="{{newMessagePlaceholder}}">{{message}}</textarea>' +
' <input class="submit" type="submit" value="{{submitText}}" />' +
'{{#if isEditMode}}' +
' <input class="cancel" type="button" value="{{cancelText}}" />' +