Fix #41 using Comments in a Gantry-powered theme did not escape the comment form token correctly
This commit is contained in:
parent
fbf7ee0bc8
commit
4e88431863
|
@ -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
|
# v1.2.5
|
||||||
## 09/16/2016
|
## 09/16/2016
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{ nonce_field('form', 'form-nonce') }}
|
{{ nonce_field('form', 'form-nonce')|raw }}
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<div class="alert">{{ form.message }}</div>
|
<div class="alert">{{ form.message }}</div>
|
||||||
|
|
Loading…
Reference in New Issue