Merge "install.php: Allow extensions and skins to be specified"
[lhc/web/wiklou.git] / includes / htmlform / fields / HTMLSelectNamespace.php
index 2e07af6..7f74b3b 100644 (file)
@@ -3,13 +3,16 @@
  * Wrapper for Html::namespaceSelector to use in HTMLForm
  */
 class HTMLSelectNamespace extends HTMLFormField {
+
+       /** @var string|null */
+       protected $mAllValue;
+
        public function __construct( $params ) {
                parent::__construct( $params );
 
                $this->mAllValue = array_key_exists( 'all', $params )
                        ? $params['all']
                        : 'all';
-
        }
 
        public function getInputHTML( $value ) {