Jeroen De Dauw has uploaded a new change for review. https://gerrit.wikimedia.org/r/92609
Change subject: Fix global var access ...................................................................... Fix global var access Change-Id: If5cd1954cd078a86e1bceb3e87f0b9261ccee9a2 --- M SemanticMediaWiki.settings.php 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SemanticMediaWiki refs/changes/09/92609/1 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: newchange Gerrit-Change-Id: If5cd1954cd078a86e1bceb3e87f0b9261ccee9a2 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/SemanticMediaWiki Gerrit-Branch: master Gerrit-Owner: Jeroen De Dauw <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
