1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-06 22:45:02 +02:00

[ticket/16114] mcp_topic_postrow_post_details_author_username_{append/prepend}

PHPBB3-16114
This commit is contained in:
Dark❶ 2019-07-29 02:57:24 +05:30
parent b53f95e577
commit b30822ea80
No known key found for this signature in database
GPG Key ID: FAE32A15F9132DE8
2 changed files with 15 additions and 1 deletions

View File

@ -1065,6 +1065,20 @@ mcp_topic_postrow_post_details_after
* Since: 3.1.10-RC1
* Purpose: Add content after post details in topic moderation
mcp_topic_postrow_post_details_author_username_append
===
* Locations:
+ styles/prosilver/template/mcp_topic.html
* Since: 3.2.8-RC1
* Purpose: Append information to message author username for post details in topic moderation
mcp_topic_postrow_post_details_author_username_prepend
===
* Locations:
+ styles/prosilver/template/mcp_topic.html
* Since: 3.2.8-RC1
* Purpose: Prepend information to message author username for post details in topic moderation
mcp_topic_postrow_post_details_before
===
* Locations:

View File

@ -120,7 +120,7 @@
<p class="author">
<a href="#pr{postrow.POST_ID}" title="{postrow.MINI_POST}">
<i class="icon fa-file fa-fw icon-lightgray icon-tiny" aria-hidden="true"></i><span class="sr-only">{postrow.MINI_POST}</span>
</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 -->
</a> {L_POSTED} {postrow.POST_DATE} {L_POST_BY_AUTHOR} <!-- EVENT mcp_topic_postrow_post_details_author_username_prepend --><strong>{postrow.POST_AUTHOR_FULL}</strong><!-- EVENT mcp_topic_postrow_post_details_author_username_append --><!-- IF postrow.U_MCP_DETAILS --> [ <a href="{postrow.U_MCP_DETAILS}">{L_POST_DETAILS}</a> ]<!-- ENDIF -->
</p>
<!-- EVENT mcp_topic_postrow_post_details_after -->