From: Aaron Schulz Date: Fri, 17 Oct 2008 00:46:50 +0000 (+0000) Subject: (bug 16009) Remove extra title param X-Git-Tag: 1.31.0-rc.0~44720 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=e1b225a3653c3a31c2de7c87a021e45f9733c8b0;p=lhc%2Fweb%2Fwiklou.git (bug 16009) Remove extra title param --- diff --git a/includes/Pager.php b/includes/Pager.php index 3125610754..7ad2a81b8d 100644 --- a/includes/Pager.php +++ b/includes/Pager.php @@ -297,8 +297,7 @@ abstract class IndexPager implements Pager { $attrs .= " class=\"mw-{$type}link\"" ; } return $this->getSkin()->makeKnownLinkObj( $this->getTitle(), $text, - wfArrayToCGI( $query, $this->getDefaultQuery() ), '', '', - $attrs ); + wfArrayToCGI( $query, $this->getDefaultQuery() ), '', '', $attrs ); } /** @@ -850,7 +849,7 @@ abstract class TablePager extends IndexPager { "
" . wfMsgHtml( 'table_pager_limit', $this->getLimitSelect() ) . "\n\n" . - $this->getHiddenFields( 'limit' ) . + $this->getHiddenFields( array('limit','title') ) . "
\n"; }