1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-19 07:00:14 +01:00

Merge pull request #4838 from marc1706/ticket/15020

[ticket/15020] Add Event for mcp_topic_postrow_post_subject
This commit is contained in:
Marc Alexander 2017-05-21 14:20:03 +02:00
commit 03c30d4bc6
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995
2 changed files with 16 additions and 0 deletions

View File

@ -967,6 +967,20 @@ mcp_topic_postrow_post_details_before
* Since: 3.1.10-RC1
* Purpose: Add content before post details in topic moderation
mcp_topic_postrow_post_subject_after
===
* Locations:
+ styles/prosilver/template/mcp_topic.html
* Since: 3.1.11-RC1
* Purpose: Add content after post subject in topic moderation
mcp_topic_postrow_post_subject_before
===
* Locations:
+ styles/prosilver/template/mcp_topic.html
* Since: 3.1.11-RC1
* Purpose: Add content before post subject in topic moderation
mcp_topic_topic_title_after
===
* Locations:

View File

@ -111,7 +111,9 @@
</li>
</ul>
<!-- EVENT mcp_topic_postrow_post_subject_before -->
<h3><a href="{postrow.U_POST_DETAILS}">{postrow.POST_SUBJECT}</a></h3>
<!-- EVENT mcp_topic_postrow_post_subject_after -->
<!-- EVENT mcp_topic_postrow_post_details_before -->
<p class="author"><a href="#pr{postrow.POST_ID}">{postrow.MINI_POST_IMG}</a> {L_POSTED} {postrow.POST_DATE} {L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong><!-- IF postrow.U_MCP_DETAILS --> [ <a href="{postrow.U_MCP_DETAILS}">{L_POST_DETAILS}</a> ]<!-- ENDIF --></p>