From e4c31083f16e5998eca8f01b8e999e73562567e6 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sat, 26 Feb 2011 10:55:44 +0000 Subject: [PATCH] Null -> null, reorder docs to match signature --- includes/Xml.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/Xml.php b/includes/Xml.php index 412f041ec2..77b62632c4 100644 --- a/includes/Xml.php +++ b/includes/Xml.php @@ -446,14 +446,14 @@ class Xml { * Build a drop-down box from a textual list. * * @param $name Mixed: Name and id for the drop-down - * @param $class Mixed: CSS classes for the drop-down - * @param $other Mixed: Text for the "Other reasons" option * @param $list Mixed: Correctly formatted text (newline delimited) to be used to generate the options + * @param $other Mixed: Text for the "Other reasons" option * @param $selected Mixed: Option which should be pre-selected + * @param $class Mixed: CSS classes for the drop-down * @param $tabindex Mixed: Value of the tabindex attribute * @return string */ - public static function listDropDown( $name= '', $list = '', $other = '', $selected = '', $class = '', $tabindex = Null ) { + public static function listDropDown( $name= '', $list = '', $other = '', $selected = '', $class = '', $tabindex = null ) { $optgroup = false; $options = self::option( $other, 'other', $selected === 'other' ); -- 2.20.1