diff --git a/plugins/Marketplace/templates/plugin-details.twig b/plugins/Marketplace/templates/plugin-details.twig index 8bd14e2f0a51..a24cbb3e86d3 100644 --- a/plugins/Marketplace/templates/plugin-details.twig +++ b/plugins/Marketplace/templates/plugin-details.twig @@ -213,22 +213,20 @@ {% endif %}
{{ 'Marketplace_Authors'|translate }}
-
{% for author in plugin.authors %} - {% if author.name %} - {% apply spaceless %} - {% if author.homepage %} - {{ author.name }} - {% elseif author.email %} - {{ author.name }} - {% else %} - {{ author.name }} - {% endif %} - - {% if loop.index < plugin.authors|length %} - , - {% endif %} - {% endapply %} - {% endif %} +
{% for author in plugin.authors|filter(author => author.name) %} + {% apply spaceless %} + {% if author.homepage %} + {{ author.name }} + {% elseif author.email %} + {{ author.name }} + {% else %} + {{ author.name }} + {% endif %} + + {% if loop.index < plugin.authors|length %} + , + {% endif %} + {% endapply %} {% endfor %}
{% endif %}