Created
February 5, 2023 20:55
-
-
Save marc1706/280de0e927d4377008db23833fbd1b10 to your computer and use it in GitHub Desktop.
prosilver changes phpBB 3.3.9 to 3.3.10
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/ucp_groups_manage.html b/phpBB/styles/prosilver/template/ucp_groups_manage.html | |
index ea75c8b1b1..63b9560a7a 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_groups_manage.html | |
+++ b/phpBB/styles/prosilver/template/ucp_groups_manage.html | |
@@ -1,6 +1,6 @@ | |
<!-- INCLUDE ucp_header.html --> | |
-<h2<!-- IF GROUP_COLOR --> style="color:#{GROUP_COLOR};"<!-- ENDIF -->>{L_USERGROUPS}<!-- IF GROUP_NAME --> :: {GROUP_NAME}<!-- ENDIF --></h2> | |
+<h2<!-- IF GROUP_COLOUR --> style="color:#{GROUP_COLOUR};"<!-- ENDIF -->>{L_USERGROUPS}<!-- IF GROUP_NAME --> :: {GROUP_NAME}<!-- ENDIF --></h2> | |
<form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}> | |
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/ajax.js b/phpBB/styles/prosilver/template/ajax.js | |
index db2a5732f7..79187470d8 100644 | |
--- a/phpBB/styles/prosilver/template/ajax.js | |
+++ b/phpBB/styles/prosilver/template/ajax.js | |
@@ -101,6 +101,7 @@ phpbb.addAjaxCallback('mark_topics_read', function(res, updateTopicLinks) { | |
phpbb.addAjaxCallback('notification.mark_all_read', function(res) { | |
if (typeof res.success !== 'undefined') { | |
phpbb.markNotifications($('#notification_list li.bg2'), 0); | |
+ phpbb.toggleDropdown.call($('#notification_list_button')); | |
phpbb.closeDarkenWrapper(3000); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment