diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2018-09-25 16:14:46 +0200 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2018-09-25 16:14:46 +0200 |
commit | 1081aaee3e838995c072cc78db78b2b5d5c6b14f (patch) | |
tree | 0a0fe8584a5605c2bc4c3858f954a94b23f9efff /phpBB/styles/prosilver/template/memberlist_body.html | |
parent | 02cbb864a5b6df62e978a69c368c8ec5ca35d8a3 (diff) | |
download | forums-1081aaee3e838995c072cc78db78b2b5d5c6b14f.tar forums-1081aaee3e838995c072cc78db78b2b5d5c6b14f.tar.gz forums-1081aaee3e838995c072cc78db78b2b5d5c6b14f.tar.bz2 forums-1081aaee3e838995c072cc78db78b2b5d5c6b14f.tar.xz forums-1081aaee3e838995c072cc78db78b2b5d5c6b14f.zip |
[ticket/15619] Always display CPF legend
PHPBB3-15619
Diffstat (limited to 'phpBB/styles/prosilver/template/memberlist_body.html')
-rw-r--r-- | phpBB/styles/prosilver/template/memberlist_body.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/memberlist_body.html b/phpBB/styles/prosilver/template/memberlist_body.html index 255e6746e1..cedc5031c7 100644 --- a/phpBB/styles/prosilver/template/memberlist_body.html +++ b/phpBB/styles/prosilver/template/memberlist_body.html @@ -88,7 +88,7 @@ <!-- IF not S_LEADERS_SET --> <th class="name" data-dfn="{L_RANK}{L_COMMA_SEPARATOR}{L_USERNAME}"><span class="rank-img"><a href="{U_SORT_RANK}">{L_RANK}</a></span><a href="{U_SORT_USERNAME}"><!-- IF S_SHOW_GROUP -->{L_GROUP_MEMBERS}<!-- ELSE -->{L_USERNAME}<!-- ENDIF --></a></th> <th class="posts"><a href="{U_SORT_POSTS}#memberlist">{L_POSTS}</a></th> - <th class="info"><!-- BEGIN custom_fields --><!-- IF not custom_fields.S_FIRST_ROW -->{L_COMMA_SEPARATOR} <!-- ENDIF -->{custom_fields.PROFILE_FIELD_NAME}<!-- END custom_fields --></th> + <th class="info">{% for field in custom_fields %}{% if not loop.first %}{L_COMMA_SEPARATOR} {% endif %}{{ field.PROFILE_FIELD_NAME }}{% endfor %}</th> <th class="joined"><a href="{U_SORT_JOINED}#memberlist">{L_JOINED}</a></th> <!-- IF U_SORT_ACTIVE --><th class="active"><a href="{U_SORT_ACTIVE}#memberlist">{L_LAST_ACTIVE}</a></th><!-- ENDIF --> <!-- ELSEIF S_SHOW_GROUP --> |