Jeroen De Dauw has submitted this change and it was merged. Change subject: Fix global var access ......................................................................
Fix global var access Change-Id: If5cd1954cd078a86e1bceb3e87f0b9261ccee9a2 --- M SemanticMediaWiki.settings.php 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Jeroen De Dauw: Looks good to me, approved jenkins-bot: Verified diff --git a/SemanticMediaWiki.settings.php b/SemanticMediaWiki.settings.php index 9b01058..db4db8f 100644 --- a/SemanticMediaWiki.settings.php +++ b/SemanticMediaWiki.settings.php @@ -30,7 +30,7 @@ # web. Change it if required ($wgScriptPath is the path to the base directory # of your wiki). No final slash. ## -$smwgScriptPath = ( $wgExtensionAssetsPath === false ? $wgScriptPath . '/extensions' : $wgExtensionAssetsPath ) . '/SemanticMediaWiki'; +$GLOBALS['smwgScriptPath'] = ( $GLOBALS['wgExtensionAssetsPath'] === false ? $GLOBALS['wgScriptPath'] . '/extensions' : $GLOBALS['wgExtensionAssetsPath'] ) . '/SemanticMediaWiki'; ## ### -- To view, visit https://gerrit.wikimedia.org/r/92609 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: If5cd1954cd078a86e1bceb3e87f0b9261ccee9a2 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/SemanticMediaWiki Gerrit-Branch: master Gerrit-Owner: Jeroen De Dauw <[email protected]> Gerrit-Reviewer: Jeroen De Dauw <[email protected]> Gerrit-Reviewer: jenkins-bot _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
