X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FXml.php;h=b368a131cafc46c228b70c46423b3b020fd496db;hb=520b167979260edf2cee41842e526ec985c37f92;hp=febf03e7a22fc453f7257c93713b7ce8820a340f;hpb=36d9784b156ea4d906b73c8ae30f8ae2513e9a86;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Xml.php b/includes/Xml.php index febf03e7a2..b368a131ca 100644 --- a/includes/Xml.php +++ b/includes/Xml.php @@ -266,7 +266,7 @@ class Xml { /** * Convenience function to build an HTML text input field * @param string $name Value of the name attribute - * @param int $size Value of the size attribute + * @param int|false $size Value of the size attribute * @param mixed $value Value of the value attribute * @param array $attribs Other attributes * @return string HTML @@ -289,7 +289,7 @@ class Xml { /** * Convenience function to build an HTML password input field * @param string $name Value of the name attribute - * @param int $size Value of the size attribute + * @param int|false $size Value of the size attribute * @param mixed $value Value of the value attribute * @param array $attribs Other attributes * @return string HTML @@ -600,7 +600,7 @@ class Xml { * * @param string|bool $legend Legend of the fieldset. If evaluates to false, * legend is not added. - * @param string $content Pre-escaped content for the fieldset. If false, + * @param string|false $content Pre-escaped content for the fieldset. If false, * only open fieldset is returned. * @param array $attribs Any attributes to fieldset-element. *