Page MenuHomeMiraheze

Add $wgMinervaTalkAtTop to isvwiki
Closed, ResolvedPublic

Description

Please set $wgMinervaTalkAtTop in isvwiki for mobile readers so that we can show talk page tab to all mobile readers. Since that variable it does not exist in LocalSettings.php at the moment, I am not filing a pull request myself.

Example in https://noc.wikimedia.org/conf/InitialiseSettings.php.txt

'wgMinervaTalkAtTop' => [
	// Blocked on T54165
	'default' => [
		'base' => false,
		'beta' => false,
		'loggedin' => true,
	],
	// T253985
	'svwiki' => [
		'base' => true,
		'beta' => true,
		'loggedin' => true,
	],
],

Needed code:

'wgMinervaTalkAtTop' => [
	'default' => [
		'base' => false,
		'beta' => false,
		'loggedin' => true,
	],
	'isvwiki' => [
		'base' => true,
		'beta' => true,
		'loggedin' => true,
	],
],

Event Timeline

Sorry for the delay, GitHub is messing up a bit on my part. I’ll try to fix some of these formatting issues ASAP.

Reception123 reassigned this task from Bukkit to Unknown Object (User).