diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-10-20 21:06:58 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-10-20 21:06:58 +0200 |
commit | 77da8b650725473fedfcebc76d5a387a9ea493ef (patch) | |
tree | 5821ce6f5866a01e37a75b3d9c37264f80f04c70 /phpBB/styles | |
parent | 06c894ff7f77e53773aa1e7d205b494cc6480b5c (diff) | |
parent | 23fd522dbbefa81bfbced2115d9a3a86b26f8d64 (diff) | |
download | forums-77da8b650725473fedfcebc76d5a387a9ea493ef.tar forums-77da8b650725473fedfcebc76d5a387a9ea493ef.tar.gz forums-77da8b650725473fedfcebc76d5a387a9ea493ef.tar.bz2 forums-77da8b650725473fedfcebc76d5a387a9ea493ef.tar.xz forums-77da8b650725473fedfcebc76d5a387a9ea493ef.zip |
Merge branch '3.2.x' into 3.3.x
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/memberlist_body.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/memberlist_body.html b/phpBB/styles/prosilver/template/memberlist_body.html index 745f9a58a8..b8ff092372 100644 --- a/phpBB/styles/prosilver/template/memberlist_body.html +++ b/phpBB/styles/prosilver/template/memberlist_body.html @@ -28,8 +28,13 @@ <p> <!-- IF AVATAR_IMG -->{AVATAR_IMG}<!-- ENDIF --> {% EVENT memberlist_body_group_rank_before %} - <!-- IF RANK_IMG -->{RANK_IMG}<!-- ENDIF --> - <!-- IF GROUP_RANK -->{GROUP_RANK}<!-- ENDIF --> + {% if RANK_IMG %}{{ RANK_IMG }}{% endif %} + {% if GROUP_RANK %} + {% if not RANK_IMG %} + {{ lang('GROUP_RANK') ~ lang('COLON') }} + {% endif %} + {{ GROUP_RANK }} + {% endif %} {% EVENT memberlist_body_group_rank_after %} </p> <!-- ELSE --> |