Index: trunk/phase3/includes/specials/SpecialAllpages.php |
— | — | @@ -127,7 +127,10 @@ |
128 | 128 | Xml::label( $this->msg( 'namespace' )->text(), 'namespace' ) . |
129 | 129 | " </td> |
130 | 130 | <td class='mw-input'>" . |
131 | | - Xml::namespaceSelector( $namespace, null ) . ' ' . |
| 131 | + Html::namespaceSelector( |
| 132 | + array( 'selected' => $namespace ), |
| 133 | + array( 'name' => 'namespace', 'id' => 'namespace' ) |
| 134 | + ) . ' ' . |
132 | 135 | Xml::submitButton( $this->msg( 'allpagessubmit' )->text() ) . |
133 | 136 | " </td> |
134 | 137 | </tr>"; |
Index: trunk/phase3/includes/specials/SpecialRecentchanges.php |
— | — | @@ -655,7 +655,10 @@ |
656 | 656 | * @return String |
657 | 657 | */ |
658 | 658 | protected function namespaceFilterForm( FormOptions $opts ) { |
659 | | - $nsSelect = Xml::namespaceSelector( $opts['namespace'], '' ); |
| 659 | + $nsSelect = Html::namespaceSelector( |
| 660 | + array( 'selected' => $opts['namespace'], 'all' => '' ), |
| 661 | + array( 'name' => 'namespace', 'id' => 'namespace' ) |
| 662 | + ); |
660 | 663 | $nsLabel = Xml::label( wfMsg( 'namespace' ), 'namespace' ); |
661 | 664 | $invert = Xml::checkLabel( |
662 | 665 | wfMsg( 'invert' ), 'invert', 'nsinvert', |