mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-07-08 15:53:17 +02:00
Fix for themes with an array of Keywords #823
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 } %}
|
||||
|
||||
Reference in New Issue
Block a user