Created
December 26, 2019 10:04
-
-
Save marc1706/5a2852c9be5b56d0c54a283ee83fd576 to your computer and use it in GitHub Desktop.
phpBB style changes 3.2.9-RC1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/styles/prosilver/template/bbcode.html b/phpBB/styles/prosilver/template/bbcode.html | |
index 940c0ace29..b37ba238d2 100644 | |
--- a/phpBB/styles/prosilver/template/bbcode.html | |
+++ b/phpBB/styles/prosilver/template/bbcode.html | |
@@ -37,6 +37,10 @@ | |
<xsl:text> </xsl:text> | |
<a href="{@post_url}" data-post-id="{@post_id}" onclick="if(document.getElementById(hash.substr(1)))href=hash">↑</a> | |
</xsl:if> | |
+ <xsl:if test="@msg_url"> | |
+ <xsl:text> </xsl:text> | |
+ <a href="{@msg_url}" data-msg-id="{@msg_id}">↑</a> | |
+ </xsl:if> | |
<xsl:if test="@date"> | |
<div class="responsive-hide"><xsl:value-of select="@date"/></div> | |
</xsl:if> | |
diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html | |
index 8250a1fd07..4932860f8c 100644 | |
--- a/phpBB/styles/prosilver/template/forumlist_body.html | |
+++ b/phpBB/styles/prosilver/template/forumlist_body.html | |
@@ -101,7 +101,7 @@ | |
<i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{L_VIEW_LATEST_POST}</span> | |
</a> | |
<!-- ENDIF --> | |
- <br />{forumrow.LAST_POST_TIME} | |
+ <br /><time datetime="{forumrow.LAST_POST_TIME_RFC3339}">{forumrow.LAST_POST_TIME}</time> | |
<!-- ELSE --> | |
{% if forumrow.U_UNAPPROVED_TOPICS %} | |
{{ lang('TOPIC_UNAPPROVED_FORUM', forumrow.TOPICS) }} | |
diff --git a/phpBB/styles/prosilver/template/mcp_topic.html b/phpBB/styles/prosilver/template/mcp_topic.html | |
index 090e24041e..889cab8b83 100644 | |
--- a/phpBB/styles/prosilver/template/mcp_topic.html | |
+++ b/phpBB/styles/prosilver/template/mcp_topic.html | |
@@ -118,7 +118,7 @@ | |
<!-- EVENT mcp_topic_postrow_post_details_before --> | |
<p class="author"> | |
- <a href="#pr{postrow.POST_ID}" title="{postrow.MINI_POST}"> | |
+ <a href="{postrow.U_MINI_POST}" 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} {% EVENT mcp_topic_post_author_full_prepend %}<strong>{postrow.POST_AUTHOR_FULL}</strong>{% EVENT mcp_topic_post_author_full_append %}<!-- IF postrow.U_MCP_DETAILS --> [ <a href="{postrow.U_MCP_DETAILS}">{L_POST_DETAILS}</a> ]<!-- ENDIF --> | |
</p> | |
diff --git a/phpBB/styles/prosilver/template/memberlist_body.html b/phpBB/styles/prosilver/template/memberlist_body.html | |
index 5f03ad99cc..b8ff092372 100644 | |
--- a/phpBB/styles/prosilver/template/memberlist_body.html | |
+++ b/phpBB/styles/prosilver/template/memberlist_body.html | |
@@ -28,8 +28,13 @@ | |
<p> | |
<!-- IF AVATAR_IMG -->{AVATAR_IMG}<!-- ENDIF --> | |
{% EVENT memberlist_body_group_rank_before %} | |
- <!-- IF RANK_IMG -->{RANK_IMG}<!-- ENDIF --> | |
- <!-- IF GROUP_RANK -->{GROUP_RANK}<!-- ENDIF --> | |
+ {% if RANK_IMG %}{{ RANK_IMG }}{% endif %} | |
+ {% if GROUP_RANK %} | |
+ {% if not RANK_IMG %} | |
+ {{ lang('GROUP_RANK') ~ lang('COLON') }} | |
+ {% endif %} | |
+ {{ GROUP_RANK }} | |
+ {% endif %} | |
{% EVENT memberlist_body_group_rank_after %} | |
</p> | |
<!-- ELSE --> | |
@@ -120,7 +125,13 @@ | |
<tr class="<!-- IF memberrow.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF memberrow.S_INACTIVE --> inactive<!-- ENDIF -->"> | |
<td><span class="rank-img"><!-- EVENT memberlist_body_rank_prepend --><!-- IF memberrow.RANK_IMG -->{memberrow.RANK_IMG}<!-- ELSE -->{memberrow.RANK_TITLE}<!-- ENDIF --><!-- EVENT memberlist_body_rank_append --></span><!-- IF S_IN_SEARCH_POPUP and not S_SELECT_SINGLE --><input type="checkbox" name="user" value="{memberrow.USERNAME}" /> <!-- ENDIF --><!-- EVENT memberlist_body_username_prepend -->{memberrow.USERNAME_FULL}<!-- IF memberrow.S_INACTIVE --> ({L_INACTIVE})<!-- ENDIF --><!-- EVENT memberlist_body_username_append --><!-- IF S_IN_SEARCH_POPUP --><br />[ <a href="#" onclick="insert_single_user('#results', '{memberrow.A_USERNAME}'); return false;">{L_SELECT}</a> ]<!-- ENDIF --></td> | |
<td class="posts"><!-- IF memberrow.POSTS and S_DISPLAY_SEARCH --><a href="{memberrow.U_SEARCH_USER}" title="{L_SEARCH_USER_POSTS}">{memberrow.POSTS}</a><!-- ELSE -->{memberrow.POSTS}<!-- ENDIF --></td> | |
- <td class="info"><!-- BEGIN custom_fields --><div>{memberrow.custom_fields.PROFILE_FIELD_VALUE}</div><!-- BEGINELSE --> <!-- END custom_fields --></td> | |
+ <td class="info"> | |
+ {%- for field in memberrow.custom_fields -%} | |
+ <div>{% if field.S_PROFILE_CONTACT %}<a href="{{ field.PROFILE_FIELD_CONTACT }}">{% endif %}{{ field.PROFILE_FIELD_VALUE }}{% if field.S_PROFILE_CONTACT %}</a>{% endif %}</div> | |
+ {%- else -%} | |
+ | |
+ {%- endfor -%} | |
+ </td> | |
<td>{memberrow.JOINED}</td> | |
<!-- IF S_VIEWONLINE --><td>{memberrow.LAST_ACTIVE} </td><!-- ENDIF --> | |
{% EVENT memberlist_body_memberrow_after %} | |
diff --git a/phpBB/styles/prosilver/template/navbar_header.html b/phpBB/styles/prosilver/template/navbar_header.html | |
index dc29285922..77f5dae0c0 100644 | |
--- a/phpBB/styles/prosilver/template/navbar_header.html | |
+++ b/phpBB/styles/prosilver/template/navbar_header.html | |
@@ -160,7 +160,7 @@ | |
</li> | |
<!-- ENDIF --> | |
<!-- EVENT navbar_header_user_profile_append --> | |
- <!-- ELSE --> | |
+ <!-- ELSE IF not S_IS_BOT --> | |
<li class="rightside" data-skip-responsive="true"> | |
<a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="x" role="menuitem"> | |
<i class="icon fa-power-off fa-fw" aria-hidden="true"></i><span>{L_LOGIN_LOGOUT}</span> | |
@@ -183,14 +183,14 @@ | |
<!-- EVENT overall_header_breadcrumbs_before --> | |
<li class="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList"> | |
<!-- IF U_SITE_HOME --> | |
- <span class="crumb" {$MICRODATA}><a href="{U_SITE_HOME}" itemtype="https://schema.org/Thing" itemprop="item" data-navbar-reference="home"><i class="icon fa-home fa-fw" aria-hidden="true"></i><span itemprop="name">{L_SITE_HOME}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span> | |
+ <span class="crumb" {$MICRODATA}><a href="{U_SITE_HOME}" itemtype="https://schema.org/Thing" itemscope itemprop="item" data-navbar-reference="home"><i class="icon fa-home fa-fw" aria-hidden="true"></i><span itemprop="name">{L_SITE_HOME}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span> | |
<!-- ENDIF --> | |
<!-- EVENT overall_header_breadcrumb_prepend --> | |
- <span class="crumb" {$MICRODATA}><a href="{U_INDEX}" itemtype="https://schema.org/Thing" itemprop="item" accesskey="h" data-navbar-reference="index"><!-- IF not U_SITE_HOME --><i class="icon fa-home fa-fw"></i><!-- ENDIF --><span itemprop="name">{L_INDEX}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span> | |
+ <span class="crumb" {$MICRODATA}><a href="{U_INDEX}" itemtype="https://schema.org/Thing" itemscope itemprop="item" accesskey="h" data-navbar-reference="index"><!-- IF not U_SITE_HOME --><i class="icon fa-home fa-fw"></i><!-- ENDIF --><span itemprop="name">{L_INDEX}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span> | |
<!-- BEGIN navlinks --> | |
<!-- EVENT overall_header_navlink_prepend --> | |
- <span class="crumb" {$MICRODATA}<!-- IF navlinks.MICRODATA --> {navlinks.MICRODATA}<!-- ENDIF -->><a href="{navlinks.U_VIEW_FORUM}" itemtype="https://schema.org/Thing" itemprop="item"><span itemprop="name">{navlinks.FORUM_NAME}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span> | |
+ <span class="crumb" {$MICRODATA}<!-- IF navlinks.MICRODATA --> {navlinks.MICRODATA}<!-- ENDIF -->><a href="{navlinks.U_VIEW_FORUM}" itemtype="https://schema.org/Thing" itemscope itemprop="item"><span itemprop="name">{navlinks.FORUM_NAME}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span> | |
<!-- EVENT overall_header_navlink_append --> | |
<!-- END navlinks --> | |
<!-- EVENT overall_header_breadcrumb_append --> | |
diff --git a/phpBB/styles/prosilver/template/overall_footer.html b/phpBB/styles/prosilver/template/overall_footer.html | |
index bdff1a0c05..cd245decc4 100644 | |
--- a/phpBB/styles/prosilver/template/overall_footer.html | |
+++ b/phpBB/styles/prosilver/template/overall_footer.html | |
@@ -17,7 +17,7 @@ | |
</p> | |
<!-- ENDIF --> | |
<!-- EVENT overall_footer_copyright_append --> | |
- <p class="footer-row"> | |
+ <p class="footer-row" role="menu"> | |
<a class="footer-link" href="{{ U_PRIVACY }}" title="{{ lang('PRIVACY_LINK') }}" role="menuitem"> | |
<span class="footer-link-text">{{ lang('PRIVACY_LINK') }}</span> | |
</a> | |
diff --git a/phpBB/styles/prosilver/template/plupload.html b/phpBB/styles/prosilver/template/plupload.html | |
index 593070321d..9425b7d769 100644 | |
--- a/phpBB/styles/prosilver/template/plupload.html | |
+++ b/phpBB/styles/prosilver/template/plupload.html | |
@@ -45,7 +45,14 @@ phpbb.plupload = { | |
max_file_size: '{FILESIZE}b', | |
chunk_size: '{CHUNK_SIZE}b', | |
unique_names: true, | |
- filters: [{FILTERS}], | |
+ filters: { | |
+ mime_types: [ | |
+ {FILTERS} | |
+ ], | |
+ mime_types_max_file_size: [ | |
+ {FILTERS} | |
+ ], | |
+ }, | |
{S_RESIZE} | |
headers: {'X-PHPBB-USING-PLUPLOAD': '1', 'X-Requested-With': 'XMLHttpRequest'}, | |
file_data_name: 'fileupload', | |
diff --git a/phpBB/styles/prosilver/template/posting_buttons.html b/phpBB/styles/prosilver/template/posting_buttons.html | |
index 122afdf978..cb305eee4b 100644 | |
--- a/phpBB/styles/prosilver/template/posting_buttons.html | |
+++ b/phpBB/styles/prosilver/template/posting_buttons.html | |
@@ -10,27 +10,6 @@ | |
var bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[img]','[/img]','[url]','[/url]','[flash=]', '[/flash]','[size=]','[/size]'<!-- BEGIN custom_tags -->, {custom_tags.BBCODE_NAME}<!-- END custom_tags -->); | |
var imageTag = false; | |
- // Helpline messages | |
- var help_line = { | |
- b: '{LA_BBCODE_B_HELP}', | |
- i: '{LA_BBCODE_I_HELP}', | |
- u: '{LA_BBCODE_U_HELP}', | |
- q: '{LA_BBCODE_Q_HELP}', | |
- c: '{LA_BBCODE_C_HELP}', | |
- l: '{LA_BBCODE_L_HELP}', | |
- o: '{LA_BBCODE_O_HELP}', | |
- p: '{LA_BBCODE_P_HELP}', | |
- w: '{LA_BBCODE_W_HELP}', | |
- a: '{LA_BBCODE_A_HELP}', | |
- s: '{LA_BBCODE_S_HELP}', | |
- f: '{LA_BBCODE_F_HELP}', | |
- y: '{LA_BBCODE_Y_HELP}', | |
- d: '{LA_BBCODE_D_HELP}' | |
- <!-- BEGIN custom_tags --> | |
- ,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}' | |
- <!-- END custom_tags --> | |
- } | |
- | |
function change_palette() | |
{ | |
phpbb.toggleDisplay('colour_palette'); | |
@@ -117,7 +96,7 @@ | |
<!-- EVENT posting_editor_buttons_custom_tags_before --> | |
<!-- BEGIN custom_tags --> | |
- <button type="button" class="button button-secondary bbcode-{custom_tags.BBCODE_TAG_CLEAN}" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{custom_tags.BBCODE_HELPLINE}"> | |
+ <button type="button" class="button button-secondary bbcode-{custom_tags.BBCODE_TAG_CLEAN}" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{{ custom_tags.BBCODE_HELPLINE|e('html_attr') }}"> | |
{custom_tags.BBCODE_TAG} | |
</button> | |
<!-- END custom_tags --> | |
diff --git a/phpBB/styles/prosilver/template/posting_review.html b/phpBB/styles/prosilver/template/posting_review.html | |
index 033a88485e..e5d285e7bf 100644 | |
--- a/phpBB/styles/prosilver/template/posting_review.html | |
+++ b/phpBB/styles/prosilver/template/posting_review.html | |
@@ -13,7 +13,7 @@ | |
<!-- ENDIF --> | |
<div class="postbody" id="ppr{post_review_row.POST_ID}"> | |
- <h3><a href="#ppr{post_review_row.POST_ID}">{post_review_row.POST_SUBJECT}</a></h3> | |
+ <h3><a href="{post_review_row.U_MINI_POST}">{post_review_row.POST_SUBJECT}</a></h3> | |
<p class="author"> | |
<!-- IF S_IS_BOT --> | |
<span><i class="icon fa-file fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{post_review_row.MINI_POST}</span></span> | |
diff --git a/phpBB/styles/prosilver/template/posting_topic_review.html b/phpBB/styles/prosilver/template/posting_topic_review.html | |
index 8faece3447..209dadf327 100644 | |
--- a/phpBB/styles/prosilver/template/posting_topic_review.html | |
+++ b/phpBB/styles/prosilver/template/posting_topic_review.html | |
@@ -24,7 +24,7 @@ | |
<!-- ENDIF --> | |
<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> | |
+ <h3><a href="{topic_review_row.U_MINI_POST}">{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"> | |
diff --git a/phpBB/styles/prosilver/template/search_results.html b/phpBB/styles/prosilver/template/search_results.html | |
index 391afa4d7f..9ee13a4224 100644 | |
--- a/phpBB/styles/prosilver/template/search_results.html | |
+++ b/phpBB/styles/prosilver/template/search_results.html | |
@@ -108,7 +108,7 @@ | |
<!-- IF not S_IS_BOT --> | |
<div class="responsive-show" style="display: none;"> | |
- {L_LAST_POST} {L_POST_BY_AUTHOR} <!-- EVENT search_results_last_post_author_username_prepend -->{searchresults.LAST_POST_AUTHOR_FULL}<!-- EVENT search_results_last_post_author_username_append --> « <a href="{searchresults.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{searchresults.LAST_POST_TIME}</a> | |
+ {L_LAST_POST} {L_POST_BY_AUTHOR} <!-- EVENT search_results_last_post_author_username_prepend -->{searchresults.LAST_POST_AUTHOR_FULL}<!-- EVENT search_results_last_post_author_username_append --> « <a href="{searchresults.U_LAST_POST}" title="{L_GOTO_LAST_POST}"><time datetime="{searchresults.LAST_POST_TIME_RFC3339}">{searchresults.LAST_POST_TIME}</time></a> | |
<br />{L_POSTED} {L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a> | |
</div> | |
<!-- IF searchresults.TOPIC_REPLIES --><span class="responsive-show left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{searchresults.TOPIC_REPLIES}</strong></span><!-- ENDIF --> | |
@@ -118,7 +118,7 @@ | |
<!-- IF searchresults.S_HAS_POLL --><i class="icon fa-bar-chart fa-fw" aria-hidden="true"></i><!-- ENDIF --> | |
<!-- IF searchresults.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF --> | |
{% EVENT topiclist_row_topic_by_author_before %} | |
- {L_POST_BY_AUTHOR} <!-- EVENT search_results_topic_author_username_prepend -->{searchresults.TOPIC_AUTHOR_FULL}<!-- EVENT search_results_topic_author_username_append --> » {searchresults.FIRST_POST_TIME} » {L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a> | |
+ {L_POST_BY_AUTHOR} <!-- EVENT search_results_topic_author_username_prepend -->{searchresults.TOPIC_AUTHOR_FULL}<!-- EVENT search_results_topic_author_username_append --> » <time datetime="{searchresults.FIRST_POST_TIME_RFC3339}">{searchresults.FIRST_POST_TIME}</time> » {L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a> | |
{% EVENT topiclist_row_topic_by_author_after %} | |
</div> | |
@@ -150,7 +150,7 @@ | |
<i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{VIEW_LATEST_POST}</span> | |
</a> | |
<!-- ENDIF --> | |
- <br />{searchresults.LAST_POST_TIME} | |
+ <br /><time datetime="{searchresults.LAST_POST_TIME_RFC3339}">{searchresults.LAST_POST_TIME}</time> | |
</span> | |
</dd> | |
</dl> | |
diff --git a/phpBB/styles/prosilver/template/ucp_agreement.html b/phpBB/styles/prosilver/template/ucp_agreement.html | |
index d4fef9f0a5..7959925d30 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_agreement.html | |
+++ b/phpBB/styles/prosilver/template/ucp_agreement.html | |
@@ -43,7 +43,8 @@ | |
<div class="inner"> | |
<fieldset class="submit-buttons"> | |
<!-- IF S_SHOW_COPPA --> | |
- <strong><a href="{U_COPPA_NO}" class="button1">{L_COPPA_NO}</a></strong> <a href="{U_COPPA_YES}" class="button2">{L_COPPA_YES}</a> | |
+ <input type="submit" name="coppa_no" id="coppa_no" value="{{ L_COPPA_NO }}" class="button1" /> | |
+ <input type="submit" name="coppa_yes" id="coppa_yes" value="{{ L_COPPA_YES }}" class="button2" /> | |
<!-- ELSE --> | |
<input type="submit" name="agreed" id="agreed" value="{L_AGREE}" class="button1" /> | |
<input type="submit" name="not_agreed" value="{L_NOT_AGREE}" class="button2" /> | |
diff --git a/phpBB/styles/prosilver/template/ucp_profile_profile_info.html b/phpBB/styles/prosilver/template/ucp_profile_profile_info.html | |
index 69eda8c42c..ac0cd153c2 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_profile_profile_info.html | |
+++ b/phpBB/styles/prosilver/template/ucp_profile_profile_info.html | |
@@ -13,7 +13,7 @@ | |
<!-- EVENT ucp_profile_profile_info_before --> | |
<!-- IF S_BIRTHDAYS_ENABLED --> | |
<dl> | |
- <dt><label for="bday_day">{L_BIRTHDAY}{L_COLON}</label><br /><span>{L_BIRTHDAY_EXPLAIN}</span></dt> | |
+ <dt><label for="bday_day">{L_BIRTHDAY}{L_COLON}{% EVENT ucp_profile_profile_info_birthday_label_append %}</label><br /><span>{L_BIRTHDAY_EXPLAIN}</span></dt> | |
<dd> | |
<label for="bday_day">{L_DAY}{L_COLON} <select name="bday_day" id="bday_day">{S_BIRTHDAY_DAY_OPTIONS}</select></label> | |
<label for="bday_month">{L_MONTH}{L_COLON} <select name="bday_month" id="bday_month">{S_BIRTHDAY_MONTH_OPTIONS}</select></label> | |
diff --git a/phpBB/styles/prosilver/template/viewforum_body.html b/phpBB/styles/prosilver/template/viewforum_body.html | |
index 1827738019..40beb784d7 100644 | |
--- a/phpBB/styles/prosilver/template/viewforum_body.html | |
+++ b/phpBB/styles/prosilver/template/viewforum_body.html | |
@@ -187,7 +187,7 @@ | |
<!-- IF not S_IS_BOT --> | |
<div class="responsive-show" style="display: none;"> | |
- {L_LAST_POST} {L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_last_post_author_username_prepend -->{topicrow.LAST_POST_AUTHOR_FULL}<!-- EVENT viewforum_body_last_post_author_username_append --> « <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{topicrow.LAST_POST_TIME}</a> | |
+ {L_LAST_POST} {L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_last_post_author_username_prepend -->{topicrow.LAST_POST_AUTHOR_FULL}<!-- EVENT viewforum_body_last_post_author_username_append --> « <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}"><time datetime="{topicrow.LAST_POST_TIME_RFC3339}">{topicrow.LAST_POST_TIME}</time></a> | |
<!-- IF topicrow.S_POST_GLOBAL and FORUM_ID != topicrow.FORUM_ID --><br />{L_POSTED} {L_IN} <a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a><!-- ENDIF --> | |
</div> | |
<!-- IF topicrow.REPLIES --> | |
@@ -199,7 +199,7 @@ | |
<!-- IF topicrow.S_HAS_POLL --><i class="icon fa-bar-chart fa-fw" aria-hidden="true"></i><!-- ENDIF --> | |
<!-- IF topicrow.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF --> | |
{% EVENT topiclist_row_topic_by_author_before %} | |
- {L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_topic_author_username_prepend -->{topicrow.TOPIC_AUTHOR_FULL}<!-- EVENT viewforum_body_topic_author_username_append --> » {topicrow.FIRST_POST_TIME} | |
+ {L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_topic_author_username_prepend -->{topicrow.TOPIC_AUTHOR_FULL}<!-- EVENT viewforum_body_topic_author_username_append --> » <time datetime="{topicrow.FIRST_POST_TIME_RFC3339}">{topicrow.FIRST_POST_TIME}</time> | |
{% EVENT topiclist_row_topic_by_author_after %} | |
<!-- IF topicrow.S_POST_GLOBAL and FORUM_ID != topicrow.FORUM_ID --> » {L_IN} <a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a><!-- ENDIF --> | |
</div> | |
@@ -232,7 +232,7 @@ | |
<i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{VIEW_LATEST_POST}</span> | |
</a> | |
<!-- ENDIF --> | |
- <br />{topicrow.LAST_POST_TIME} | |
+ <br /><time datetime="{topicrow.LAST_POST_TIME_RFC3339}">{topicrow.LAST_POST_TIME}</time> | |
</span> | |
</dd> | |
</dl> | |
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html | |
index 8d7e26f099..9bfa07e52b 100644 | |
--- a/phpBB/styles/prosilver/template/viewtopic_body.html | |
+++ b/phpBB/styles/prosilver/template/viewtopic_body.html | |
@@ -224,7 +224,7 @@ | |
<div id="post_content{postrow.POST_ID}"<!-- IF postrow.S_POST_HIDDEN --> style="display: none;"<!-- ENDIF -->> | |
<!-- EVENT viewtopic_body_post_subject_before --> | |
- <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="{postrow.POST_ICON_IMG_ALT}" title="{postrow.POST_ICON_IMG_ALT}" /> <!-- ENDIF --><a href="#p{postrow.POST_ID}">{postrow.POST_SUBJECT}</a></h3> | |
+ <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="{postrow.POST_ICON_IMG_ALT}" title="{postrow.POST_ICON_IMG_ALT}" /> <!-- ENDIF --><a href="{postrow.U_MINI_POST}">{postrow.POST_SUBJECT}</a></h3> | |
<!-- DEFINE $SHOW_POST_BUTTONS = (postrow.U_EDIT or postrow.U_DELETE or postrow.U_REPORT or postrow.U_WARN or postrow.U_INFO or postrow.U_QUOTE) --> | |
<!-- EVENT viewtopic_body_post_buttons_list_before --> | |
@@ -289,7 +289,7 @@ | |
<i class="icon fa-file fa-fw <!-- IF postrow.S_UNREAD_POST -->icon-red<!-- ELSE -->icon-lightgray<!-- ENDIF --> icon-md" aria-hidden="true"></i><span class="sr-only">{postrow.MINI_POST}</span> | |
</a> | |
<!-- ENDIF --> | |
- <span class="responsive-hide">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> » </span>{postrow.POST_DATE} | |
+ <span class="responsive-hide">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> » </span><time datetime="{postrow.POST_DATE_RFC3339}">{postrow.POST_DATE}</time> | |
</p> | |
<!-- EVENT viewtopic_body_postrow_post_details_after --> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment