diff options
author | PayBas <contact@paybas.com> | 2014-03-29 11:14:40 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-03-29 12:50:23 +0100 |
commit | e8b43a1bb81c00167c38a0a6c11eab41eb0f4906 (patch) | |
tree | 2e43e300ed0def74ab91419f003946c6dbc0a3d6 /phpBB | |
parent | 1e0af0d252fc8675961411dff1adbabf4475c399 (diff) | |
download | forums-e8b43a1bb81c00167c38a0a6c11eab41eb0f4906.tar forums-e8b43a1bb81c00167c38a0a6c11eab41eb0f4906.tar.gz forums-e8b43a1bb81c00167c38a0a6c11eab41eb0f4906.tar.bz2 forums-e8b43a1bb81c00167c38a0a6c11eab41eb0f4906.tar.xz forums-e8b43a1bb81c00167c38a0a6c11eab41eb0f4906.zip |
[ticket/12308] Template Event forumlist_body_last_row_after
PHPBB3-12308
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/docs/events.md | 8 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/forumlist_body.html | 1 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/forumlist_body.html | 1 |
3 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 8d8854d689..d2e57cf152 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -118,6 +118,14 @@ forumlist_body_subforums_before * Since: 3.1.0-a4 * Purpose: Add content before the list of subforums (if any) for each forum on the forum list. +forumlist_body_last_row_after +==== +* Locations: + + styles/prosilver/template/forumlist_body.html + + styles/subsilver2/template/forumlist_body.html +* Since: 3.1.0-b2 +* Purpose: Add content after the very last row of the forum list. + index_body_linklist_after === * Locations: diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html index 363d87fa8f..0dd47bea9e 100644 --- a/phpBB/styles/prosilver/template/forumlist_body.html +++ b/phpBB/styles/prosilver/template/forumlist_body.html @@ -88,6 +88,7 @@ </div> </div> + <!-- EVENT forumlist_body_last_row_after --> <!-- ENDIF --> <!-- BEGINELSE --> diff --git a/phpBB/styles/subsilver2/template/forumlist_body.html b/phpBB/styles/subsilver2/template/forumlist_body.html index 63d8aba9bb..0d522a6959 100644 --- a/phpBB/styles/subsilver2/template/forumlist_body.html +++ b/phpBB/styles/subsilver2/template/forumlist_body.html @@ -85,6 +85,7 @@ </td> </tr> <!-- ENDIF --> + <!-- EVENT forumlist_body_last_row_after --> <!-- BEGINELSE --> <tr> <td class="row1" colspan="5" align="center"><p class="gensmall">{L_NO_FORUMS}</p></td> |