Index: trunk/phase3/includes/Pager.php |
— | — | @@ -297,8 +297,7 @@ |
298 | 298 | $attrs .= " class=\"mw-{$type}link\"" ; |
299 | 299 | } |
300 | 300 | return $this->getSkin()->makeKnownLinkObj( $this->getTitle(), $text, |
301 | | - wfArrayToCGI( $query, $this->getDefaultQuery() ), '', '', |
302 | | - $attrs ); |
| 301 | + wfArrayToCGI( $query, $this->getDefaultQuery() ), '', '', $attrs ); |
303 | 302 | } |
304 | 303 | |
305 | 304 | /** |
— | — | @@ -850,7 +849,7 @@ |
851 | 850 | "<form method=\"get\" action=\"$url\">" . |
852 | 851 | wfMsgHtml( 'table_pager_limit', $this->getLimitSelect() ) . |
853 | 852 | "\n<input type=\"submit\" value=\"$msgSubmit\"/>\n" . |
854 | | - $this->getHiddenFields( 'limit' ) . |
| 853 | + $this->getHiddenFields( array('limit','title') ) . |
855 | 854 | "</form>\n"; |
856 | 855 | } |
857 | 856 | |