diff options
Diffstat (limited to 'includes/MagicWord.php')
-rw-r--r-- | includes/MagicWord.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/MagicWord.php b/includes/MagicWord.php index 0508f96155e2..4651ba8212fb 100644 --- a/includes/MagicWord.php +++ b/includes/MagicWord.php @@ -116,9 +116,9 @@ class MagicWord { # Initialises this object with an ID function load( $id ) { - global $wgLang; + global $wgContLang; $this->mId = $id; - $wgLang->getMagic( $this ); + $wgContLang->getMagic( $this ); } /** |