Index: trunk/phase3/includes/CategoryPage.php |
— | — | @@ -449,12 +449,12 @@ |
450 | 450 | $sk = $this->getSkin(); |
451 | 451 | $limitText = $wgLang->formatNum( $limit ); |
452 | 452 | |
453 | | - $prevLink = wfMsgExt( 'prevn', array( 'escape' ), $limitText ); |
| 453 | + $prevLink = wfMsgExt( 'prevn', array( 'escape', 'parsemag' ), $limitText ); |
454 | 454 | if( $first != '' ) { |
455 | 455 | $prevLink = $sk->makeLinkObj( $title, $prevLink, |
456 | 456 | wfArrayToCGI( $query + array( 'until' => $first ) ) ); |
457 | 457 | } |
458 | | - $nextLink = wfMsgExt( 'nextn', array( 'escape' ), $limitText ); |
| 458 | + $nextLink = wfMsgExt( 'nextn', array( 'escape', 'parsemag' ), $limitText ); |
459 | 459 | if( $last != '' ) { |
460 | 460 | $nextLink = $sk->makeLinkObj( $title, $nextLink, |
461 | 461 | wfArrayToCGI( $query + array( 'from' => $last ) ) ); |