Did you update the extension when you updated MediaWiki core? There is usages of that variable in the 1.31 version of MobileFrontend, but they've been removed in the 1.32 version.
The version of the extension should match the version of MediaWiki core you're using, else you might get errors like this $ git clone "ssh://[email protected]:29418/mediawiki/extensions/MobileFrontend" Cloning into 'MobileFrontend'... remote: Counting objects: 2291, done remote: Finding sources: 100% (92/92) remote: Getting sizes: 100% (67/67) remote: Compressing objects: 100% (673532/673532) remote: Total 107395 (delta 28), reused 107334 (delta 9) Receiving objects: 100% (107395/107395), 25.05 MiB | 4.82 MiB/s, done. Resolving deltas: 100% (86465/86465), done. $ cd MobileFrontend/ $ git checkout REL1_32 Branch 'REL1_32' set up to track remote branch 'REL1_32' from 'origin'. Switched to a new branch 'REL1_32' $ grep -R git clone "ssh://[email protected]:29418/mediawiki/extensions/MobileFrontend"^C $ grep -R ResourceLoaderLESSVars * $ git checkout REL1_31 Branch 'REL1_31' set up to track remote branch 'REL1_31' from 'origin'. Switched to a new branch 'REL1_31' $ grep -R ResourceLoaderLESSVars * includes/MobileFrontend.hooks.php: $lessVars = $config->get( 'ResourceLoaderLESSVars' ); includes/MobileFrontend.hooks.php: $lessVars = $config->get( 'ResourceLoaderLESSVars' ); -- Sent from: http://wikimedia.7.x6.nabble.com/WikiMedia-General-f609661.html _______________________________________________ MediaWiki-l mailing list To unsubscribe, go to: https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
