diff options
| author | Cesar G <prototech91@gmail.com> | 2014-05-15 13:43:08 -0700 |
|---|---|---|
| committer | Cesar G <prototech91@gmail.com> | 2014-05-27 07:17:46 -0700 |
| commit | d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2 (patch) | |
| tree | 38cadcb85043722a3c4e9c51edce93fd0e71d02d /phpBB/styles/prosilver/template/posting_topic_review.html | |
| parent | 00ff33c9b42479bee386cd45e863cb0bfe25a882 (diff) | |
| download | forums-d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2.tar forums-d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2.tar.gz forums-d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2.tar.bz2 forums-d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2.tar.xz forums-d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2.zip | |
[ticket/12155] Use the new .button class as the basis for the post buttons.
PHPBB3-12155
Diffstat (limited to 'phpBB/styles/prosilver/template/posting_topic_review.html')
| -rw-r--r-- | phpBB/styles/prosilver/template/posting_topic_review.html | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/posting_topic_review.html b/phpBB/styles/prosilver/template/posting_topic_review.html index d2faed5f8f..1af6e08c18 100644 --- a/phpBB/styles/prosilver/template/posting_topic_review.html +++ b/phpBB/styles/prosilver/template/posting_topic_review.html @@ -24,14 +24,25 @@ <div class="postbody" id="pr{topic_review_row.POST_ID}"> <h3><a href="#pr{topic_review_row.POST_ID}">{topic_review_row.POST_SUBJECT}</a></h3> + <!-- IF (topic_review_row.POSTER_QUOTE and topic_review_row.DECODED_MESSAGE) or topic_review_row.U_MCP_DETAILS --> + <ul class="post-buttons"> + <!-- IF topic_review_row.U_MCP_DETAILS --> + <li class="info-icon"> + <a href="{topic_review_row.U_MCP_DETAILS}" title="{L_POST_DETAILS}" class="button icon-button"> + <span>{L_POST_DETAILS}</span> + </a> + <li> + <!-- ENDIF --> <!-- IF topic_review_row.POSTER_QUOTE and topic_review_row.DECODED_MESSAGE --> - <ul class="profile-icons"> - <li class="quote-icon"><a href="#postingbox" onclick="addquote({topic_review_row.POST_ID}, '{topic_review_row.POSTER_QUOTE}', '{LA_WROTE}');" title="{L_QUOTE} {topic_review_row.POST_AUTHOR}"><span>{L_QUOTE} {topic_review_row.POST_AUTHOR}</span></a></li> + <li class="quote-icon"> + <a href="#postingbox" onclick="addquote({topic_review_row.POST_ID}, '{topic_review_row.POSTER_QUOTE}', '{LA_WROTE}');" title="{L_QUOTE} {topic_review_row.POST_AUTHOR}" class="button icon-button"> + <span>{L_QUOTE} {topic_review_row.POST_AUTHOR}</span> + </a> + </li> + <!-- ENDIF --> </ul> <!-- ENDIF --> - <!-- IF topic_review_row.U_MCP_DETAILS --><div class="right-box"><a href="{topic_review_row.U_MCP_DETAILS}">{L_POST_DETAILS}</a></div><!-- ENDIF --> - <p class="author"><!-- IF S_IS_BOT -->{topic_review_row.MINI_POST_IMG}<!-- ELSE --><a href="{topic_review_row.U_MINI_POST}">{topic_review_row.MINI_POST_IMG}</a><!-- ENDIF --> {L_POST_BY_AUTHOR} <strong>{topic_review_row.POST_AUTHOR_FULL}</strong> » {topic_review_row.POST_DATE} </p> <div class="content">{topic_review_row.MESSAGE}</div> |
