BlueSpice 4.3
A BlueSpicePrivacy banner is shown to admin users +
Description: Admin users might see a yellow banner indicating that some privacy pages need to be created even if they have already been created for the footer links of the wiki.
This is to ensure that the confirmation links during a user's first login exist:
Help: Solution:
To make sure the links to the Privacy Policy and the Disclaimer of your wiki link to the correct pages:
- Click on the Privacy policy (1) and Disclaimers (2) links in your site footer. These are the pages that need to exist for the notice to disappear:
- If you haven't created these pages yet, create them.
- Once the pages exist, change the content of the following two system messages to the full pagename of these two pages. Privacy policy link:
For the privacy policy link, open the pageMediaWiki:bs-privacy-privacypage
and change the text to the correct page name for your footer link:Disclaimers link:
Repeat the same for the Disclaimers link. Open the pageMediaWiki:Bs-privacy-termsofservicepage
and add the correct name of the linked footer page for Disclaimers (by default, this isSite:General disclaimer
)
The yellow alert banner should now be gone.
Since the language switcher is now located in the title area of wiki pages, pages that use the option __HIDETITLE__
currently cannot show the language switcher.
Styles that are defined in templates or in MediaWiki:Common.css might no longer be applied
Because of necessary forward-compatibility changes in the Discovery-skin, some templates might have to be manually updated to show certain styles correctly.
Fix:
- Affected Styles in MediaWiki:Common.css:
The styles in question need to be prepended with the selector#mw-content-text
. - TemplateStyles:
Templates that rely on the extension TemplateStyles need to add a wrapper container with its own ID around the affected content. This ID needs to be prepended to the existing selector. The selector#mw-content-text
will not work in that case.
Example:
Some wikis might experience styling inconsistencies for the newly added startpage templates
If a wiki is already using some templates that are included in the new startpage templates (e.g. Image cards), these templates are not overwritten during the upgrade to BlueSpice 4.3.
Any styling issues of any affected templates need to be adjusted manually.
BlueSpice 4.2
The filter on special pages (e.g., "Recent changes") fails to load -v4.2.6
In some cases, the page Special:RecentChanges does not finish loading. You can add the following script to MediaWiki:Common.js:
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}