Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -1051,8 +1051,8 @@ |
1052 | 1052 | * @return String: HTML <img> tag |
1053 | 1053 | */ |
1054 | 1054 | protected function sideArrow() { |
1055 | | - global $wgContLang; |
1056 | | - $dir = $wgContLang->isRTL() ? 'l' : 'r'; |
| 1055 | + global $wgLang; |
| 1056 | + $dir = $wgLang->isRTL() ? 'l' : 'r'; |
1057 | 1057 | return $this->arrow( $dir, '+', wfMsg( 'rc-enhanced-expand' ) ); |
1058 | 1058 | } |
1059 | 1059 | |