From: Sam Reed Date: Mon, 27 Jun 2011 23:16:19 +0000 (+0000) Subject: Fix casing of langcode X-Git-Tag: 1.31.0-rc.0~29239 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=cc160586f6fcedc2e7e9f0c7b78568e3d5415dfa;p=lhc%2Fweb%2Fwiklou.git Fix casing of langcode --- diff --git a/includes/specials/SpecialAllmessages.php b/includes/specials/SpecialAllmessages.php index d65f25f0d8..77e85d7b5b 100644 --- a/includes/specials/SpecialAllmessages.php +++ b/includes/specials/SpecialAllmessages.php @@ -71,7 +71,7 @@ class SpecialAllmessages extends SpecialPage { wfGetLangObj( $request->getVal( 'lang', $par ) ) ); - $this->langCode = $this->table->lang->getCode(); + $this->langcode = $this->table->lang->getCode(); $out->addHTML( $this->table->buildForm() . $this->table->getNavigationBar() . @@ -82,15 +82,13 @@ class SpecialAllmessages extends SpecialPage { } - - /** * Use TablePager for prettified output. We have to pretend that we're * getting data from a table when in fact not all of it comes from the database. */ class AllmessagesTablePager extends TablePager { - protected $filter, $prefix, $langCode; + protected $filter, $prefix, $langcode; public $mLimitsShown;