X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dcompta/operations/supprimer.php?a=blobdiff_plain;f=includes%2FHtml.php;h=5f91dacaba104b26716c1bc9fa8d45f1770df884;hb=86c08b240167d01217d4cd628e978078b1ed7011;hp=62ae0b85913b249da929d4957e4a1fd5fd33037e;hpb=4f21e6be661f7305abc223bb31600970a3fb5326;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Html.php b/includes/Html.php index 62ae0b8591..5f91dacaba 100644 --- a/includes/Html.php +++ b/includes/Html.php @@ -359,8 +359,6 @@ class Html { 'keygen' => array( 'keytype' => 'rsa' ), 'link' => array( 'media' => 'all' ), 'menu' => array( 'type' => 'list' ), - // Note: the use of text/javascript here instead of other JavaScript - // MIME types follows the HTML5 spec. 'script' => array( 'type' => 'text/javascript' ), 'style' => array( 'media' => 'all', @@ -597,7 +595,6 @@ class Html { // we may as well not call htmlspecialchars(). // @todo FIXME: Verify that we actually need to // escape \n\r\t here, and explain why, exactly. - # // We could call Sanitizer::encodeAttribute() for this, but we // don't because we're stubborn and like our marginal savings on // byte size from not having to encode unnecessary quotes. @@ -675,7 +672,6 @@ class Html { } return self::rawElement( 'style', array( - 'type' => 'text/css', 'media' => $media, ), $contents ); } @@ -692,7 +688,6 @@ class Html { return self::element( 'link', array( 'rel' => 'stylesheet', 'href' => $url, - 'type' => 'text/css', 'media' => $media, ) ); } @@ -745,10 +740,10 @@ class Html { } /** - * Convenience function to produce a checkbox (input element with type=checkbox) + * Convenience function to produce a radio button (input element with type=radio) * * @param string $name Name attribute - * @param bool $checked Whether the checkbox is checked or not + * @param bool $checked Whether the radio button is checked or not * @param array $attribs Array of additional attributes * @return string Raw HTML */ @@ -857,7 +852,7 @@ class Html { } elseif ( is_int( $nsId ) ) { $nsName = $wgContLang->convertNamespace( $nsId ); } - $optionsOut[ $nsId ] = $nsName; + $optionsOut[$nsId] = $nsName; } return $optionsOut;