diff --git a/phpBB/styles/prosilver/template/posting_pm_header.html b/phpBB/styles/prosilver/template/posting_pm_header.html index 6c26070004..c9333caeed 100644 --- a/phpBB/styles/prosilver/template/posting_pm_header.html +++ b/phpBB/styles/prosilver/template/posting_pm_header.html @@ -22,24 +22,24 @@ {% endif %} - {% if .to_recipient or .bcc_recipient %} + {% if to_recipient or bcc_recipient %}
{% endif %}
- {% if .to_recipient %} + {% if to_recipient %}
    - {% for to_recipient in .to_recipient %} + {% for recipient in to_recipient %}
  • {% if not S_EDIT_POST %} - + {% endif %} - {% if to_recipient.IS_GROUP %} - {{ to_recipient.NAME }} + {% if recipient.IS_GROUP %} + {{ recipient.NAME }} {% else %} - {{ to_recipient.NAME_FULL }} + {{ recipient.NAME_FULL }} {% endif %}
  • {% endfor %} @@ -48,21 +48,21 @@
{% endif %}
- {% if .bcc_recipient %} + {% if bcc_recipient %}
    - {% for bcc_recipient in .bcc_recipient %} + {% for recipient in bcc_recipient %}
  • {% if not S_EDIT_POST %} - + {% endif %} - {% if bcc_recipient.IS_GROUP %} - {{ bcc_recipient.NAME }} + {% if recipient.IS_GROUP %} + {{ recipient.NAME }} {% else %} - {{ bcc_recipient.NAME_FULL }} + {{ recipient.NAME_FULL }} {% endif %}
  • {% endfor %} @@ -85,18 +85,18 @@
{% endif %} - {% if .to_recipient %} + {% if to_recipient %}
    - {% for to_recipient in .to_recipient %} + {% for recipient in to_recipient %}
  • - {% if to_recipient.IS_GROUP %} - {{ to_recipient.NAME }} + {% if recipient.IS_GROUP %} + {{ recipient.NAME }} {% else %} - {{ to_recipient.NAME_FULL }} + {{ recipient.NAME_FULL }} {% endif %} {% if not S_EDIT_POST %} -   +   {% endif %}
  • {% endfor %}