The creator of the style is somewhere in the mists of Estonia, and can no longer be contacted through phpbb.com
We have been using style Black v. 3.1.3 since 2015 - it is the only style which is truly 'Black', and not simply called black.
So it has become our permanent style for all boards we create - and the only style we will use. (changing style is not an option).
The latest version of Black is 3.3.2 - this version bears no resemblance to the original, (very far from black),
and uses Sass as stylesheet.
https://www.phpbb.com/customise/db/style/black/
We tried installing this updated style for comparison, and after activating the style - we were literally locked out of our own board,
getting a persistent HTML 500 ERROR with every attempt to login to the board or ACP.
This catastrophy was only remedied by manually deleting the style directory in FTP. Then the board and ACP became accessible again.
The obvious problem with running a 3.3.10 board with a 3.1.3 style - is the avalanche or errors which wreak havoc, and mayhem on our board.
Loads of extensions either do not function at all, or cause HTML 500 ERROR board lockouts.
So now (as in today) we need to do whatever is necessary to update this style.
In this topic : viewtopic.php?t=2534601 we find lists (and more lists) of code
with no reference points - no hint of which directory, filename, or line(s) to edit in the (black) style directory.
We need some practical help with this task, from persons who actually know how to update phpBB styles.
If someone can please post an annotation for each line of code - clarifying the location of the target file (and line) to be edited,
this will save us needing neuro-therapy for PTSD.
Cheers!
prosilver changes phpBB 3.3.9 to 3.3.10
prosilver_changes_3.3.9_to_3.3.10-html.diff
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}>
prosilver_changes_3.3.9_to_3.3.10-js.diff
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);
}
});