diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-06-20 10:44:32 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-06-20 10:44:32 +0200 |
commit | 38e261c95596f7cd4096f46cdfa2269fe11dd129 (patch) | |
tree | 61078ec93fe6b30cfcb9555d485db65fe440fb29 /phpBB/styles/subsilver2 | |
parent | 69ef2f55cc88a8ac0b53db2f87299dfa986ce1d1 (diff) | |
parent | 58a3342c3e982b927aa5903a9c6bdf06c233d907 (diff) | |
download | forums-38e261c95596f7cd4096f46cdfa2269fe11dd129.tar forums-38e261c95596f7cd4096f46cdfa2269fe11dd129.tar.gz forums-38e261c95596f7cd4096f46cdfa2269fe11dd129.tar.bz2 forums-38e261c95596f7cd4096f46cdfa2269fe11dd129.tar.xz forums-38e261c95596f7cd4096f46cdfa2269fe11dd129.zip |
Merge remote-tracking branch 'imkingdavid/ticket/10938' into develop
* imkingdavid/ticket/10938:
[ticket/10938] Serve subforum listing on forumlist from template loop
Diffstat (limited to 'phpBB/styles/subsilver2')
-rw-r--r-- | phpBB/styles/subsilver2/template/forumlist_body.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/styles/subsilver2/template/forumlist_body.html b/phpBB/styles/subsilver2/template/forumlist_body.html index be32d1fb77..b9a1102df0 100644 --- a/phpBB/styles/subsilver2/template/forumlist_body.html +++ b/phpBB/styles/subsilver2/template/forumlist_body.html @@ -48,8 +48,12 @@ <!-- IF forumrow.MODERATORS --> <p class="forumdesc"><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}</p> <!-- ENDIF --> - <!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS --> - <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p> + <!-- IF .forumrow.subforum and forumrow.S_LIST_SUBFORUMS --> + <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> + <!-- BEGIN subforum --> + <a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->,<!-- ENDIF --> + <!-- END subforum --> + </p> <!-- ENDIF --> </td> <td class="row2" align="center"><p class="topicdetails">{forumrow.TOPICS}</p></td> |