diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-02-02 23:05:50 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-02-02 23:05:50 +0100 |
commit | b1336ae01600b0ff6fdc9272d9c244bb3e9e14db (patch) | |
tree | b32f786cb9fe0f1a6f109174eee1d9d583000fcf /phpBB/styles | |
parent | 7254a52812c8cda2f76caa969cb4ff7720d85253 (diff) | |
parent | 10c67fe12a5f814d7f6ab3727b2f1099ba6a7e6d (diff) | |
download | forums-b1336ae01600b0ff6fdc9272d9c244bb3e9e14db.tar forums-b1336ae01600b0ff6fdc9272d9c244bb3e9e14db.tar.gz forums-b1336ae01600b0ff6fdc9272d9c244bb3e9e14db.tar.bz2 forums-b1336ae01600b0ff6fdc9272d9c244bb3e9e14db.tar.xz forums-b1336ae01600b0ff6fdc9272d9c244bb3e9e14db.zip |
Merge pull request #3302 from rxu/ticket/13512
[ticket/13512] Add template events before/after the post details
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/viewtopic_body.html | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 7850412cf3..3b2c0a9c65 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -249,7 +249,9 @@ <!-- ENDIF --> <!-- ENDIF --> + <!-- EVENT viewtopic_body_postrow_post_details_before --> <p class="author"><!-- IF S_IS_BOT -->{postrow.MINI_POST_IMG}<!-- ELSE --><a href="{postrow.U_MINI_POST}">{postrow.MINI_POST_IMG}</a><!-- ENDIF --><span class="responsive-hide">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> » </span>{postrow.POST_DATE} </p> + <!-- EVENT viewtopic_body_postrow_post_details_after --> <!-- IF postrow.S_POST_UNAPPROVED --> <form method="post" class="mcp_approve" action="{postrow.U_APPROVE_ACTION}"> diff --git a/phpBB/styles/subsilver2/template/viewtopic_body.html b/phpBB/styles/subsilver2/template/viewtopic_body.html index 780ece82a2..ff39515876 100644 --- a/phpBB/styles/subsilver2/template/viewtopic_body.html +++ b/phpBB/styles/subsilver2/template/viewtopic_body.html @@ -167,6 +167,7 @@ <b class="postauthor"<!-- IF postrow.POST_AUTHOR_COLOUR --> style="color: {postrow.POST_AUTHOR_COLOUR}"<!-- ENDIF -->>{postrow.POST_AUTHOR}</b> <!-- EVENT viewtopic_body_post_author_after --> </td> + <!-- EVENT viewtopic_body_postrow_post_details_before --> <td width="100%" height="25"> <table width="100%" cellspacing="0"> <tr> @@ -177,6 +178,7 @@ </tr> </table> </td> + <!-- EVENT viewtopic_body_postrow_post_details_after --> </tr> <!-- IF postrow.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF --> |