diff options
author | RMcGirr83 <rmcgirr83@gmail.com> | 2015-02-26 14:13:41 -0500 |
---|---|---|
committer | Richard McGirr <rmcgirr83@gmail.com> | 2015-02-26 18:29:02 -0500 |
commit | 8c73f635291d752737793f9c514bb59802dad104 (patch) | |
tree | abb37acd564671910adb9413534f27c74cf59a20 | |
parent | 3ac583271f9d2557a1a89ab90e40f9baf6ed8b6d (diff) | |
download | forums-8c73f635291d752737793f9c514bb59802dad104.tar forums-8c73f635291d752737793f9c514bb59802dad104.tar.gz forums-8c73f635291d752737793f9c514bb59802dad104.tar.bz2 forums-8c73f635291d752737793f9c514bb59802dad104.tar.xz forums-8c73f635291d752737793f9c514bb59802dad104.zip |
[ticket/13510] Add template even viewtopic_body_pagination_after
PHPBB3-13510
-rw-r--r-- | phpBB/docs/events.md | 8 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/viewtopic_body.html | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 08b9d2cd18..2926598aec 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -1435,6 +1435,14 @@ viewtopic_print_head_append * Since: 3.1.0-a1 * Purpose: Add asset calls directly before the `</head>` tag of the Print Topic screen +viewtopic_body_pagination_top_after +=== +* Locations: + + styles/prosilver/template/viewtopic_body.html + + styles/subsilver2/template/viewtopic_body.html +* Since: 3.1.4-RC1 +* Purpose: Add content after the pagination at top + viewtopic_body_avatar_after === * Locations: diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 3b2c0a9c65..d39645cbe2 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -64,7 +64,7 @@ <!-- ENDIF --> </div> <!-- ENDIF --> - + <!-- EVENT viewtopic_body_pagination_top_after --> </div> <!-- IF S_HAS_POLL --> diff --git a/phpBB/styles/subsilver2/template/viewtopic_body.html b/phpBB/styles/subsilver2/template/viewtopic_body.html index ff39515876..721aa5cb01 100644 --- a/phpBB/styles/subsilver2/template/viewtopic_body.html +++ b/phpBB/styles/subsilver2/template/viewtopic_body.html @@ -44,7 +44,7 @@ <!-- IF TOTAL_POSTS --> <td class="nav" valign="middle" nowrap="nowrap"> {PAGE_NUMBER}<br /></td> <td class="gensmall" nowrap="nowrap"> [ {TOTAL_POSTS} ] </td> - <td class="gensmall" width="100%" align="{S_CONTENT_FLOW_END}" nowrap="nowrap"><!-- INCLUDE pagination.html --></td> + <td class="gensmall" width="100%" align="{S_CONTENT_FLOW_END}" nowrap="nowrap"><!-- INCLUDE pagination.html --><!-- EVENT viewtopic_body_pagination_top_after --></td> <!-- ENDIF --> </tr> </table> |