diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2019-10-08 09:37:47 +0200 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2019-10-08 09:37:47 +0200 |
commit | dcf733a1e76150fbb5cecce14cc6568af4c93968 (patch) | |
tree | 8899c8e6b5dd7fd1d8ce64644796565726dfc4f9 /phpBB/styles | |
parent | 281d5435bde227fc443e7fc6fdc7c1392809aeb6 (diff) | |
download | forums-dcf733a1e76150fbb5cecce14cc6568af4c93968.tar forums-dcf733a1e76150fbb5cecce14cc6568af4c93968.tar.gz forums-dcf733a1e76150fbb5cecce14cc6568af4c93968.tar.bz2 forums-dcf733a1e76150fbb5cecce14cc6568af4c93968.tar.xz forums-dcf733a1e76150fbb5cecce14cc6568af4c93968.zip |
[ticket/16172] Use twig
PHPBB3-16172
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/memberlist_body.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/styles/prosilver/template/memberlist_body.html b/phpBB/styles/prosilver/template/memberlist_body.html index 2b8c9dc53a..b8ff092372 100644 --- a/phpBB/styles/prosilver/template/memberlist_body.html +++ b/phpBB/styles/prosilver/template/memberlist_body.html @@ -28,13 +28,13 @@ <p> <!-- IF AVATAR_IMG -->{AVATAR_IMG}<!-- ENDIF --> {% EVENT memberlist_body_group_rank_before %} - <!-- IF RANK_IMG -->{RANK_IMG}<!-- ENDIF --> - <!-- IF GROUP_RANK --> - <!-- IF not RANK_IMG --> + {% if RANK_IMG %}{{ RANK_IMG }}{% endif %} + {% if GROUP_RANK %} + {% if not RANK_IMG %} {{ lang('GROUP_RANK') ~ lang('COLON') }} - <!-- ENDIF --> - {GROUP_RANK} - <!-- ENDIF --> + {% endif %} + {{ GROUP_RANK }} + {% endif %} {% EVENT memberlist_body_group_rank_after %} </p> <!-- ELSE --> |