Index: trunk/phase3/includes/CategoryPage.php |
— | — | @@ -192,9 +192,10 @@ |
193 | 193 | */ |
194 | 194 | function addPage( $title, $sortkey, $pageLength, $isRedirect = false ) { |
195 | 195 | global $wgContLang; |
| 196 | + $titletext = $wgContLang->convert($title); |
196 | 197 | $this->articles[] = $isRedirect |
197 | | - ? '<span class="redirect-in-category">' . $this->getSkin()->makeKnownLinkObj( $title ) . '</span>' |
198 | | - : $this->getSkin()->makeSizeLinkObj( $pageLength, $title ); |
| 198 | + ? '<span class="redirect-in-category">' . $this->getSkin()->makeKnownLinkObj( $title, $titletext ) . '</span>' |
| 199 | + : $this->getSkin()->makeSizeLinkObj( $pageLength, $title, $titletext ); |
199 | 200 | $this->articles_start_char[] = $wgContLang->convert( $wgContLang->firstChar( $sortkey ) ); |
200 | 201 | } |
201 | 202 | |