diff options
author | rxu <rxu@mail.ru> | 2015-04-29 00:45:30 +0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2015-05-01 10:59:18 +0700 |
commit | aef5be3d17f4b15808cb9ff8f26bc029b076bcf7 (patch) | |
tree | 6d78213f23853ccf26e737305ed57eb1aec6a724 /phpBB/styles/prosilver/template/viewtopic_body.html | |
parent | 0bc352ea7e15c2a9b2cf4b71cf0653d49cd6ac42 (diff) | |
download | forums-aef5be3d17f4b15808cb9ff8f26bc029b076bcf7.tar forums-aef5be3d17f4b15808cb9ff8f26bc029b076bcf7.tar.gz forums-aef5be3d17f4b15808cb9ff8f26bc029b076bcf7.tar.bz2 forums-aef5be3d17f4b15808cb9ff8f26bc029b076bcf7.tar.xz forums-aef5be3d17f4b15808cb9ff8f26bc029b076bcf7.zip |
[ticket/13791] Add more post buttons template events to viewtopic_body.html
The purpose is to allow adding custom post buttons outside of original post
buttons conditionals/list in prosilver (for subsilver2 it's not the issue).
PHPBB3-13791
Diffstat (limited to 'phpBB/styles/prosilver/template/viewtopic_body.html')
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 5b8078877e..e976c36f7b 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -210,6 +210,7 @@ <h3 <!-- IF postrow.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF postrow.POST_ICON_IMG --><img src="{T_ICONS_PATH}{postrow.POST_ICON_IMG}" width="{postrow.POST_ICON_IMG_WIDTH}" height="{postrow.POST_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF --><a href="#p{postrow.POST_ID}">{postrow.POST_SUBJECT}</a></h3> + <!-- EVENT viewtopic_body_post_buttons_list_before --> <!-- IF not S_IS_BOT --> <!-- IF postrow.U_EDIT or postrow.U_DELETE or postrow.U_REPORT or postrow.U_WARN or postrow.U_INFO or postrow.U_QUOTE --> <ul class="post-buttons"> @@ -248,6 +249,7 @@ </ul> <!-- ENDIF --> <!-- ENDIF --> + <!-- EVENT viewtopic_body_post_buttons_list_after --> <!-- 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> |