Index: trunk/phase3/includes/specials/SpecialWhatlinkshere.php |
— | — | @@ -389,6 +389,7 @@ |
390 | 390 | } |
391 | 391 | |
392 | 392 | function getFilterPanel() { |
| 393 | + global $wgLang; |
393 | 394 | $show = wfMsgHtml( 'show' ); |
394 | 395 | $hide = wfMsgHtml( 'hide' ); |
395 | 396 | |
— | — | @@ -405,6 +406,6 @@ |
406 | 407 | $overrides = array( $type => !$chosen ); |
407 | 408 | $links[] = $this->makeSelfLink( $msg, wfArrayToCGI( $overrides, $changed ) ); |
408 | 409 | } |
409 | | - return Xml::fieldset( wfMsg( 'whatlinkshere-filters' ), implode( ' | ', $links ) ); |
| 410 | + return Xml::fieldset( wfMsg( 'whatlinkshere-filters' ), $wgLang->pipeList( $links ) ); |
410 | 411 | } |
411 | 412 | } |