diff options
| -rw-r--r-- | phpBB/docs/events.md | 14 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/template/forumlist_body.html | 2 | 
2 files changed, 16 insertions, 0 deletions
| diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index a91c9a8ae8..a7bcd9f978 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -291,6 +291,20 @@ forumlist_body_category_header_before  * Since: 3.1.0-a4  * Purpose: Add content before the header of the category on the forum list. +forumlist_body_category_header_row_append +=== +* Locations: +    + styles/prosilver/template/forumlist_body.html +* Since: 3.1.5-RC1 +* Purpose: Add content after the header row of the category on the forum list. + +forumlist_body_category_header_row_prepend +=== +* Locations: +    + styles/prosilver/template/forumlist_body.html +* Since: 3.1.5-RC1 +* Purpose: Add content before the header row of the category on the forum list. +  forumlist_body_forum_row_after  ===  * Locations: diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html index f2e03630ff..f8d6e36c8c 100644 --- a/phpBB/styles/prosilver/template/forumlist_body.html +++ b/phpBB/styles/prosilver/template/forumlist_body.html @@ -13,12 +13,14 @@  			<div class="inner">  			<ul class="topiclist">  				<li class="header"> +					<!-- EVENT forumlist_body_category_header_row_prepend -->  					<dl class="icon">  						<dt><div class="list-inner"><!-- IF forumrow.S_IS_CAT --><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a><!-- ELSE -->{L_FORUM}<!-- ENDIF --></div></dt>  						<dd class="topics">{L_TOPICS}</dd>  						<dd class="posts">{L_POSTS}</dd>  						<dd class="lastpost"><span>{L_LAST_POST}</span></dd>  					</dl> +					<!-- EVENT forumlist_body_category_header_row_append -->  				</li>  			</ul>  			<ul class="topiclist forums"> | 
