Index: trunk/extensions/WikimediaMobile/WikimediaMobile.php |
— | — | @@ -19,7 +19,7 @@ |
20 | 20 | /** |
21 | 21 | * Increment this when the JS file changes |
22 | 22 | */ |
23 | | -$wgWikimediaMobileVersion = '2'; |
| 23 | +$egWikimediaMobileVersion = '2'; |
24 | 24 | |
25 | 25 | /** |
26 | 26 | * The base URL of the mobile gateway |
— | — | @@ -27,19 +27,19 @@ |
28 | 28 | $wgWikimediaMobileUrl = 'http://en.m.wikipedia.org/wiki'; |
29 | 29 | |
30 | 30 | |
31 | | -$wgHooks['BeforePageDisplay'][] = 'wfWikimediaMobileAddJs'; |
32 | | -$wgHooks['MakeGlobalVariablesScript'][] = 'wfWikimediaMobileVars'; |
| 31 | +$wgHooks['BeforePageDisplay'][] = 'efWikimediaMobileAddJs'; |
| 32 | +$wgHooks['MakeGlobalVariablesScript'][] = 'efWikimediaMobileVars'; |
33 | 33 | |
34 | 34 | function wfWikimediaMobileAddJs( &$outputPage, &$skin ) { |
35 | | - global $wgOut, $wgExtensionAssetsPath, $wgWikimediaMobileVersion; |
| 35 | + global $wgOut, $wgExtensionAssetsPath, $egWikimediaMobileVersion; |
36 | 36 | |
37 | 37 | $wgOut->addScript( Html::linkedScript( |
38 | | - "$wgExtensionAssetsPath/WikimediaMobile/MobileRedirect.js?$wgWikimediaMobileVersion" |
| 38 | + "$egExtensionAssetsPath/WikimediaMobile/MobileRedirect.js?$egWikimediaMobileVersion" |
39 | 39 | ) ); |
40 | 40 | return true; |
41 | 41 | } |
42 | 42 | |
43 | | -function wfWikimediaMobileVars( &$vars ) { |
| 43 | +function efWikimediaMobileVars( &$vars ) { |
44 | 44 | global $wgWikimediaMobileUrl; |
45 | 45 | $vars['wgWikimediaMobileUrl'] = $wgWikimediaMobileUrl; |
46 | 46 | return true; |