Index: trunk/phase3/includes/specials/SpecialAllmessages.php |
— | — | @@ -71,7 +71,7 @@ |
72 | 72 | wfGetLangObj( $request->getVal( 'lang', $par ) ) |
73 | 73 | ); |
74 | 74 | |
75 | | - $this->langCode = $this->table->lang->getCode(); |
| 75 | + $this->langcode = $this->table->lang->getCode(); |
76 | 76 | |
77 | 77 | $out->addHTML( $this->table->buildForm() . |
78 | 78 | $this->table->getNavigationBar() . |
— | — | @@ -82,15 +82,13 @@ |
83 | 83 | |
84 | 84 | } |
85 | 85 | |
86 | | - |
87 | | - |
88 | 86 | /** |
89 | 87 | * Use TablePager for prettified output. We have to pretend that we're |
90 | 88 | * getting data from a table when in fact not all of it comes from the database. |
91 | 89 | */ |
92 | 90 | class AllmessagesTablePager extends TablePager { |
93 | 91 | |
94 | | - protected $filter, $prefix, $langCode; |
| 92 | + protected $filter, $prefix, $langcode; |
95 | 93 | |
96 | 94 | public $mLimitsShown; |
97 | 95 | |