diff --git a/CHANGELOG.md b/CHANGELOG.md index 58f5603..a917685 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v1.2.x +## 01/xx/2017 + +1. [](#improved) + Use existing `Utils::startsWith()` method +1. [](#bugfix) + * Fix [#41](https://github.com/getgrav/grav-plugin-comments/issues/41) using Comments in a Gantry-powered theme did not escape the comment form token correctly + # v1.2.5 ## 09/16/2016 diff --git a/templates/partials/comments.html.twig b/templates/partials/comments.html.twig index 6872180..7528223 100644 --- a/templates/partials/comments.html.twig +++ b/templates/partials/comments.html.twig @@ -35,7 +35,7 @@ {% endfor %} - {{ nonce_field('form', 'form-nonce') }} + {{ nonce_field('form', 'form-nonce')|raw }}
{{ form.message }}