Created
October 22, 2024 18:30
-
-
Save marc1706/e9733c9c6f641c10a2f2950d66d29215 to your computer and use it in GitHub Desktop.
prosilver changes for phpBB 3.3.13 to 3.3.14-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 2780d869d2..087acce075 100644 | |
--- a/phpBB/styles/prosilver/template/bbcode.html | |
+++ b/phpBB/styles/prosilver/template/bbcode.html | |
@@ -38,11 +38,11 @@ | |
<xsl:value-of select="$L_COLON"/> | |
<xsl:if test="@post_url"> | |
<xsl:text> </xsl:text> | |
- <a href="{@post_url}" data-post-id="{@post_id}" onclick="if(document.getElementById(hash.substr(1)))href=hash">↑</a> | |
+ <a href="{@post_url}" aria-label="{L_VIEW_QUOTED_POST}" data-post-id="{@post_id}" onclick="if(document.getElementById(hash.substr(1)))href=hash"><i class="icon fa-arrow-circle-up fa-fw" aria-hidden="true"></i></a> | |
</xsl:if> | |
<xsl:if test="@msg_url"> | |
<xsl:text> </xsl:text> | |
- <a href="{@msg_url}" data-msg-id="{@msg_id}">↑</a> | |
+ <a href="{@msg_url}" aria-label="{L_VIEW_QUOTED_POST}" data-msg-id="{@msg_id}"><i class="icon fa-arrow-circle-up fa-fw" aria-hidden="true"></i></a> | |
</xsl:if> | |
<xsl:if test="@date"> | |
<span class="responsive-hide"><xsl:value-of select="@date"/></span> | |
diff --git a/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html b/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html | |
index 503f6a0f48..bf121f64be 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html | |
+++ b/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html | |
@@ -22,7 +22,7 @@ | |
<!-- ENDIF --> | |
-<div id="post-{MESSAGE_ID}" class="post pm has-profile<!-- IF S_POST_UNAPPROVED or S_POST_REPORTED --> reported<!-- ENDIF --><!-- IF S_ONLINE --> online<!-- ENDIF -->"> | |
+<div id="post-{MESSAGE_ID}" class="post pm has-profile<!-- IF S_ONLINE --> online<!-- ENDIF -->"> | |
<div class="inner"> | |
<dl class="postprofile" id="profile{MESSAGE_ID}"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment