Last edited 2 years ago
by Anonymous user

SocialEntity:29 and Known issues: Difference between pages

(Difference between pages)
No edit summary
 
No edit summary
Tag: 2017 source edit
 
Line 1: Line 1:
{
{{Collapsible|cheader=The filter on special pages (e.g., "Recent changes") fails to load. {{Bsvs|bsvFrom=|bsvTo=4.2.6|bsvFeature=}}
    "social-profile-title": null,
|cdescription= In some cases, the page ''Special:RecentChanges'' does not finish loading.
    "social-profile-name": null,
|chelp=You can add the following script to ''MediaWiki:Common.js'':
    "social-profile-email": null,
<syntaxhighlight language="javascript">
    "social-profile-department": "",
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
    "social-profile-function": "",
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
    "social-profile-location": "",
    "social-profile-phone": "",
    "description": "",
    "parentid": 0,
    "id": 29,
    "ownerid": 8,
    "type": "profile",
    "archived": false,
    "tags": [
        "User:Fbaeckmann"
    ],
    "resolved": false
}
}
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}
</syntaxhighlight>}}
[[en:{{FULLPAGENAME}}]]
[[de:Bekannte Probleme]]

Revision as of 12:12, 19 April 2023

The filter on special pages (e.g., "Recent changes") fails to load.   -v4.2.6

Description: In some cases, the page Special:RecentChanges does not finish loading.


Help: 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' );
}