~ubuntu-branches/ubuntu/maverick/mediawiki/maverick

« back to all changes in this revision

Viewing changes to includes/specials/SpecialWhatlinkshere.php

  • Committer: Bazaar Package Importer
  • Author(s): Romain Beauxis
  • Date: 2009-06-19 01:38:50 UTC
  • mfrom: (16.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090619013850-dsn4lrxvs90ab4rx
Tags: 1:1.15.0-1
* New upstream release. 
* Upstream added support for OASIS documents.
Closes: #530328
* Refreshed quilt patches
* Bumped standards versions to 3.8.2
* Bumped compat to 7
* Pointed to GPL-2 in debian/copyright
* Added php5-sqlite to possible DB backend dependencies.
Closes: #501569
* Proofread README.Debian, upgrade is documented there.
Closes: #520121

Show diffs side-by-side

added added

removed removed

Lines of Context:
340
340
                        $limitLinks[] = $this->makeSelfLink( $prettyLimit, wfArrayToCGI( $overrides, $changed ) );
341
341
                }
342
342
 
343
 
                $nums = implode ( ' | ', $limitLinks );
 
343
                $nums = $wgLang->pipeList( $limitLinks );
344
344
 
345
345
                return wfMsgHtml( 'viewprevnext', $prev, $next, $nums );
346
346
        }
389
389
        }
390
390
 
391
391
        function getFilterPanel() {
 
392
                global $wgLang;
392
393
                $show = wfMsgHtml( 'show' );
393
394
                $hide = wfMsgHtml( 'hide' );
394
395
 
405
406
                        $overrides = array( $type => !$chosen );
406
407
                        $links[] = $this->makeSelfLink( $msg, wfArrayToCGI( $overrides, $changed ) );
407
408
                }
408
 
                return Xml::fieldset( wfMsg( 'whatlinkshere-filters' ), implode( ' | ', $links ) );
 
409
                return Xml::fieldset( wfMsg( 'whatlinkshere-filters' ), $wgLang->pipeList( $links ) );
409
410
        }
410
411
}