mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 07:43:47 +00:00
Do not load common.js twice
An error in both of these modules. This module is additive (it doesn't replace the existing user module) so only needs to add new pages, not append to existing pages. Bug: T300070 Change-Id: I3ba2ce82ba924972d0f9fea763328510aef41f8e
This commit is contained in:
parent
252b41de79
commit
9fba9b6b9e
|
@ -16,7 +16,6 @@ class VectorResourceLoaderUserModule extends ResourceLoaderUserModule {
|
|||
$user = $context->getUserObj();
|
||||
$pages = [];
|
||||
if ( $config->get( 'AllowUserCss' ) && !$user->isAnon() && ( $skin === Constants::SKIN_NAME_MODERN ) ) {
|
||||
$pages = parent::getPages( $context );
|
||||
$userPage = $user->getUserPage()->getPrefixedDBkey();
|
||||
$pages["$userPage/vector.js"] = [ 'type' => 'script' ];
|
||||
}
|
||||
|
|
|
@ -16,7 +16,6 @@ class VectorResourceLoaderUserStylesModule extends ResourceLoaderUserStylesModul
|
|||
$user = $context->getUserObj();
|
||||
$pages = [];
|
||||
if ( $config->get( 'AllowUserCss' ) && !$user->isAnon() && ( $skin === Constants::SKIN_NAME_MODERN ) ) {
|
||||
$pages = parent::getPages( $context );
|
||||
$userPage = $user->getUserPage()->getPrefixedDBkey();
|
||||
$pages["$userPage/vector.css"] = [ 'type' => 'style' ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue