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