diff options
author | rxu <rxu@mail.ru> | 2014-09-27 09:26:35 +0800 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2014-09-27 09:26:35 +0800 |
commit | cee8ac9dbe05c475be2eea0bf9226e27fb3cd353 (patch) | |
tree | 32194e4f0638b43e6e23c8305e0eddd86233eacd /phpBB/styles | |
parent | 71ac6ab2b87ec1d606d5669b930ac4c7164e9b11 (diff) | |
download | forums-cee8ac9dbe05c475be2eea0bf9226e27fb3cd353.tar forums-cee8ac9dbe05c475be2eea0bf9226e27fb3cd353.tar.gz forums-cee8ac9dbe05c475be2eea0bf9226e27fb3cd353.tar.bz2 forums-cee8ac9dbe05c475be2eea0bf9226e27fb3cd353.tar.xz forums-cee8ac9dbe05c475be2eea0bf9226e27fb3cd353.zip |
[ticket/13107] Add template events to forum row in forumlist_body.html
PHPBB3-13107
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/forumlist_body.html | 4 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/forumlist_body.html | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html index 22859b2452..c90f5b0639 100644 --- a/phpBB/styles/prosilver/template/forumlist_body.html +++ b/phpBB/styles/prosilver/template/forumlist_body.html @@ -26,7 +26,9 @@ <!-- EVENT forumlist_body_category_header_after --> <!-- IF not forumrow.S_IS_CAT --> + <!-- EVENT forumlist_body_forum_row_before --> <li class="row"> + <!-- EVENT forumlist_body_forum_row_prepend --> <dl class="icon {forumrow.FORUM_IMG_STYLE}"> <dt title="{forumrow.FORUM_FOLDER_IMG_ALT}"> <!-- IF forumrow.S_UNREAD_FORUM --><a href="{forumrow.U_VIEWFORUM}" class="icon-link"></a><!-- ENDIF --> @@ -80,7 +82,9 @@ </dd> <!-- ENDIF --> </dl> + <!-- EVENT forumlist_body_forum_row_append --> </li> + <!-- EVENT forumlist_body_forum_row_after --> <!-- ENDIF --> <!-- IF forumrow.S_LAST_ROW --> diff --git a/phpBB/styles/subsilver2/template/forumlist_body.html b/phpBB/styles/subsilver2/template/forumlist_body.html index 0d522a6959..c1609f0979 100644 --- a/phpBB/styles/subsilver2/template/forumlist_body.html +++ b/phpBB/styles/subsilver2/template/forumlist_body.html @@ -39,7 +39,9 @@ <td class="catdiv" colspan="3"> </td> </tr> <!-- ENDIF --> + <!-- EVENT forumlist_body_forum_row_before --> <tr> + <!-- EVENT forumlist_body_forum_row_prepend --> <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td> <td class="row1" width="100%"> <!-- IF forumrow.FORUM_IMAGE --> @@ -83,7 +85,9 @@ <p class="topicdetails">{L_NO_POSTS}</p> <!-- ENDIF --> </td> + <!-- EVENT forumlist_body_forum_row_append --> </tr> + <!-- EVENT forumlist_body_forum_row_after --> <!-- ENDIF --> <!-- EVENT forumlist_body_last_row_after --> <!-- BEGINELSE --> |