FIX: Don't escape HTML content on category descriptions

This commit is contained in:
Robin Ward 2014-10-08 13:04:22 -04:00
parent a98b8251a6
commit 32441ebcac
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
{{#if category.logo_url}}
<img {{bind-attr src=category.logo_url}} class="category-logo">
{{#if category.description}}
<p>{{category.description}}</p>
<p>{{{category.description}}}</p>
{{/if}}
{{/if}}
</section>