Merge branch 'release/1.1.2'

This commit is contained in:
Flavio Copes 2015-12-11 12:21:18 +01:00
commit cba099b218
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
# v1.1.2
## 12/11/2015
1. [](#improved)
Fix double escaping comments text and author
# v1.1.1
## 12/10/2015

View File

@ -1,5 +1,5 @@
name: Comments
version: 1.1.1
version: 1.1.2
description: Adds a commenting functionality to your site
icon: comment
author:

View File

@ -35,9 +35,9 @@
{% for comment in grav.twig.comments|array_reverse %}
<tr>
<td>
{{comment.text|e}}
{{comment.text}}
<br />
{{'PLUGIN_COMMENTS.WRITTEN_ON'|t}} {{comment.date|e}} {{'PLUGIN_COMMENTS.BY'|t}} {{comment.author|e}}
{{'PLUGIN_COMMENTS.WRITTEN_ON'|t}} {{comment.date|e}} {{'PLUGIN_COMMENTS.BY'|t}} {{comment.author}}
</td>
</tr>
{% endfor %}