resources: Collapse all jQuery UI modules into one deprecated mega-module
[lhc/web/wiklou.git] / includes / XmlSelect.php
index 5d7406c..45002e8 100644 (file)
@@ -75,7 +75,7 @@ class XmlSelect {
 
        /**
         * @param string $label
-        * @param string $value If not given, assumed equal to $label
+        * @param string|false $value If not given, assumed equal to $label
         */
        public function addOption( $label, $value = false ) {
                $value = $value !== false ? $value : $label;
@@ -99,7 +99,7 @@ class XmlSelect {
         * label => ( label => value, label => value )
         *
         * @param array $options
-        * @param string|array $default
+        * @param string|array|false $default
         * @return string
         */
        static function formatOptions( $options, $default = false ) {