| valerio.bozzolan added a comment. |
I've found where this variable is defined:
Wikbase repository / client/ClientHooks.php:
/** * Add the connected item prefixed id as a JS config variable, for gadgets etc. * * @param OutputPage $out * @param Skin $skin */ public static function onBeforePageDisplayAddJsConfig( OutputPage $out, Skin $skin ) { $prefixedId = $out->getProperty( 'wikibase_item' );if ( $prefixedId !== null ) { $out->addJsConfigVars( 'wgWikibaseItemId', $prefixedId ); } }
That method is attached to the BeforePageDisplay hook, as far I can see:
Wikibase repository / client/WikibaseClient.php:
$wgHooks['BeforePageDisplay'][] = '\Wikibase\ClientHooks::onBeforePageDisplayAddJsConfig';
So I think that the problem is that it should be hooked also to one other hook listed here: Manual:Hooks.
The most notable hook I think it's AlternateEdit:
This hook gets called at the beginning of &action="" before any user permissions are checked or any edit checking is performed.
TASK DETAIL
EMAIL PREFERENCES
To: valerio.bozzolan
Cc: valerio.bozzolan, putnik, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Mbch331
Cc: valerio.bozzolan, putnik, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, Wikidata-bugs, aude, Mbch331
_______________________________________________ Wikidata-bugs mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
