HTMLRadioField: Use another variable for the radio value to avoid conflicts
[lhc/web/wiklou.git] / includes / htmlform / HTMLSelectNamespace.php
index dfab6cf..4efdfbf 100644 (file)
@@ -22,21 +22,11 @@ class HTMLSelectNamespace extends HTMLFormField {
        }
 
        public function getInputOOUI( $value ) {
-               $namespaceOptions = Html::namespaceSelectorOptions( array( 'all' => $this->mAllValue ) );
-
-               $options = array();
-               foreach( $namespaceOptions as $id => $name ) {
-                       $options[] = array(
-                               'data' => (string)$id,
-                               'label' => $name,
-                       );
-               };
-
-               return new OOUI\DropdownInputWidget( array(
-                       'options' => $options,
+               return new MediaWiki\Widget\NamespaceInputWidget( array(
                        'value' => $value,
                        'name' => $this->mName,
                        'id' => $this->mID,
+                       'includeAllValue' => $this->mAllValue,
                ) );
        }
 }