Fix for themes with an array of Keywords #823

This commit is contained in:
Andy Miller
2016-05-09 10:51:59 -06:00
parent f2e7541607
commit 1ebca00e99
2 changed files with 5 additions and 2 deletions

View File

@@ -16,6 +16,7 @@
* Fix issue with update button when automatic check for updates is disabled
* Fix issue caused by clicking "Check for updates" multiple times
* Added missing translations
* Fix for Themes with an array of keywords [#823](https://github.com/getgrav/grav/issues/823)
# v1.1.0-beta.3
## 05/04/2016

View File

@@ -63,7 +63,9 @@
{% if theme.keywords %}
<tr>
<td>{{ "PLUGIN_ADMIN.KEYWORDS"|tu }}:</td>
<td class="double">{{ theme.keywords }}</td>
<td class="double">
{{ theme.keywords|join(', ') }}
</td>
</tr>
{% endif %}
{% if theme.license %}
@@ -106,4 +108,4 @@
{% endif %}
{% include 'partials/modal-changes-detected.html.twig' %}
{% include 'partials/modal-remove-package.html.twig' with { type: 'theme', package: theme } %}
{% include 'partials/modal-remove-package.html.twig' with { type: 'theme', package: theme } %}