diff options
| -rw-r--r-- | phpBB/docs/events.md | 14 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 3 | 
2 files changed, 17 insertions, 0 deletions
| diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index dbcf346b72..6f334caa79 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -1544,6 +1544,20 @@ viewtopic_buttons_top_after  * Since: 3.1.0-RC5  * Purpose: Add buttons after Post Reply button on the top of the posts's list +viewtopic_dropdown_bottom_custom +=== +* Locations: +    + styles/prosilver/template/viewtopic_body.html +* Since: 3.1.6-RC1 +* Purpose: Create a custom dropdown menu + +viewtopic_dropdown_top_custom +=== +* Locations: +    + styles/prosilver/template/viewtopic_body.html +* Since: 3.1.6-RC1 +* Purpose: Create a custom dropdown menu +  viewforum_forum_name_append  ===  * Locations: diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 449fd3401f..d2e8b08525 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -40,6 +40,7 @@  	</div>  	<!-- INCLUDE viewtopic_topic_tools.html --> +	<!-- EVENT viewtopic_dropdown_top_custom -->  	<!-- IF S_DISPLAY_SEARCHBOX -->  		<div class="search-box" role="search"> @@ -378,6 +379,8 @@  			</div>  		</div>  	<!-- ENDIF --> +	 +	<!-- EVENT viewtopic_dropdown_bottom_custom -->  	<!-- IF .pagination or TOTAL_POSTS -->  		<div class="pagination"> | 
