mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-28 08:00:32 +00:00
Check title value before proceeding to check if user page
Bug: T245162 Change-Id: I7b826fb0e07a58947f381893604f308903c30304
This commit is contained in:
parent
5f198fe0d8
commit
d48ce1e729
|
@ -205,12 +205,19 @@ class MinervaHooks {
|
|||
MobileContext $mobileContext, Skin $skin
|
||||
) {
|
||||
// setSkinOptions is not available
|
||||
if ( $skin instanceof SkinMinerva ) {
|
||||
if ( $skin instanceof SkinMinerva
|
||||
) {
|
||||
$services = MediaWikiServices::getInstance();
|
||||
$featureManager = $services
|
||||
->getService( 'MobileFrontend.FeaturesManager' );
|
||||
$skinOptions = $services->getService( 'Minerva.SkinOptions' );
|
||||
$title = $skin->getTitle();
|
||||
|
||||
// T245162 - this should only apply if the context relates to a page view.
|
||||
// Examples:
|
||||
// - parsing wikitext during an REST response
|
||||
// - a ResourceLoader response
|
||||
if ( $title !== null ) {
|
||||
// T232653: TALK_AT_TOP, HISTORY_IN_PAGE_ACTIONS, TOOLBAR_SUBMENU should
|
||||
// be true on user pages and user talk pages for all users
|
||||
//
|
||||
|
@ -221,6 +228,10 @@ class MinervaHooks {
|
|||
$title->inNamespace( NS_USER_TALK ) ? $title->getSubjectPage() : $title
|
||||
);
|
||||
$isUserPageOrUserTalkPage = $relevantUserPageHelper->isUserPage();
|
||||
} else {
|
||||
// If no title this must be false
|
||||
$isUserPageOrUserTalkPage = false;
|
||||
}
|
||||
|
||||
$isBeta = $mobileContext->isBetaGroupMember();
|
||||
$skinOptions->setMultiple( [
|
||||
|
|
Loading…
Reference in a new issue