Skip to content

Instantly share code, notes, and snippets.

@marc1706
Created January 13, 2021 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marc1706/853d998e242e47c661b62d8599659e3d to your computer and use it in GitHub Desktop.
Save marc1706/853d998e242e47c661b62d8599659e3d to your computer and use it in GitHub Desktop.
prosilver 3.3.2 to 3.3.3-RC1 changes
diff --git a/phpBB/styles/prosilver/theme/stylesheet.css b/phpBB/styles/prosilver/theme/stylesheet.css
index d4ea454e75..440c8a51a7 100644
--- a/phpBB/styles/prosilver/theme/stylesheet.css
+++ b/phpBB/styles/prosilver/theme/stylesheet.css
@@ -12,10 +12,10 @@
@import url("utilities.css?hash=1034bac8");
@import url("common.css?hash=70bd1301");
@import url("links.css?hash=da040ebb");
-@import url("content.css?hash=d7d65e66");
+@import url("content.css?hash=2ca4ae91");
@import url("buttons.css?hash=15c14833");
@import url("cp.css?hash=5cc9ac0c");
@import url("forms.css?hash=18ee8211");
@import url("icons.css?hash=dbc0f3b9");
@import url("colours.css?hash=3b03ccfa");
-@import url("responsive.css?hash=438ff202");
+@import url("responsive.css?hash=a1546011");
diff --git a/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html b/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html
index 7cb44a0189..503f6a0f48 100644
--- a/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html
+++ b/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html
@@ -32,7 +32,9 @@
<!-- IF AUTHOR_AVATAR --><a href="{U_MESSAGE_AUTHOR}" class="avatar">{AUTHOR_AVATAR}</a><!-- ENDIF -->
<!-- EVENT ucp_pm_viewmessage_avatar_after -->
</div>
+ {% EVENT ucp_pm_viewmessage_author_full_before %}
{MESSAGE_AUTHOR_FULL}
+ {% EVENT ucp_pm_viewmessage_author_full_after %}
</dt>
<!-- EVENT ucp_pm_viewmessage_rank_before -->
diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js
index 72dc6b7736..60a2fd8faa 100644
--- a/phpBB/styles/prosilver/template/forum_fn.js
+++ b/phpBB/styles/prosilver/template/forum_fn.js
@@ -544,7 +544,7 @@ function parseDocument($container) {
}
// Copy the list items to the dropdown
if (!copied1) {
- var $clones1 = $linksFirst.clone();
+ var $clones1 = $linksFirst.clone(true);
$menuContents.prepend($clones1.addClass('clone clone-first').removeClass('leftside rightside'));
if ($this.hasClass('post-buttons')) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment