]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/kses.php
WordPress 4.2
[autoinstalls/wordpress.git] / wp-includes / kses.php
index 531e6efea0b768deee7fbeae6e8553838c0b1e7d..ba96b089e523997d1dab0fba60a5d1df9105f718 100644 (file)
 if ( ! defined( 'CUSTOM_TAGS' ) )
        define( 'CUSTOM_TAGS', false );
 
 if ( ! defined( 'CUSTOM_TAGS' ) )
        define( 'CUSTOM_TAGS', false );
 
+// Ensure that these variables are added to the global namespace
+// (e.g. if using namespaces / autoload in the current PHP environment).
+global $allowedposttags, $allowedtags, $allowedentitynames;
+
 if ( ! CUSTOM_TAGS ) {
        /**
         * Kses global for default allowable HTML tags.
 if ( ! CUSTOM_TAGS ) {
        /**
         * Kses global for default allowable HTML tags.
@@ -84,6 +88,14 @@ if ( ! CUSTOM_TAGS ) {
                        'lang' => true,
                        'xml:lang' => true,
                ),
                        'lang' => true,
                        'xml:lang' => true,
                ),
+               'audio' => array(
+                       'autoplay' => true,
+                       'controls' => true,
+                       'loop' => true,
+                       'muted' => true,
+                       'preload' => true,
+                       'src' => true,
+               ),
                'b' => array(),
                'big' => array(),
                'blockquote' => array(
                'b' => array(),
                'big' => array(),
                'blockquote' => array(
@@ -115,10 +127,19 @@ if ( ! CUSTOM_TAGS ) {
                        'valign' => true,
                        'width' => true,
                ),
                        'valign' => true,
                        'width' => true,
                ),
+               'colgroup' => array(
+                       'align' => true,
+                       'char' => true,
+                       'charoff' => true,
+                       'span' => true,
+                       'valign' => true,
+                       'width' => true,
+               ),
                'del' => array(
                        'datetime' => true,
                ),
                'dd' => array(),
                'del' => array(
                        'datetime' => true,
                ),
                'dd' => array(),
+               'dfn' => array(),
                'details' => array(
                        'align' => true,
                        'dir' => true,
                'details' => array(
                        'align' => true,
                        'dir' => true,
@@ -235,6 +256,7 @@ if ( ! CUSTOM_TAGS ) {
                'map' => array(
                        'name' => true,
                ),
                'map' => array(
                        'name' => true,
                ),
+               'mark' => array(),
                'menu' => array(
                        'type' => true,
                ),
                'menu' => array(
                        'type' => true,
                ),
@@ -257,6 +279,7 @@ if ( ! CUSTOM_TAGS ) {
                        'cite' => true,
                ),
                's' => array(),
                        'cite' => true,
                ),
                's' => array(),
+               'samp' => array(),
                'span' => array(
                        'dir' => true,
                        'align' => true,
                'span' => array(
                        'dir' => true,
                        'align' => true,
@@ -357,6 +380,13 @@ if ( ! CUSTOM_TAGS ) {
                        'charoff' => true,
                        'valign' => true,
                ),
                        'charoff' => true,
                        'valign' => true,
                ),
+               'track' => array(
+                       'default' => true,
+                       'kind' => true,
+                       'label' => true,
+                       'src' => true,
+                       'srclang' => true,
+               ),
                'tt' => array(),
                'u' => array(),
                'ul' => array(
                'tt' => array(),
                'u' => array(),
                'ul' => array(
@@ -367,6 +397,17 @@ if ( ! CUSTOM_TAGS ) {
                        'type' => true,
                ),
                'var' => array(),
                        'type' => true,
                ),
                'var' => array(),
+               'video' => array(
+                       'autoplay' => true,
+                       'controls' => true,
+                       'height' => true,
+                       'loop' => true,
+                       'muted' => true,
+                       'poster' => true,
+                       'preload' => true,
+                       'src' => true,
+                       'width' => true,
+               ),
        );
 
        /**
        );
 
        /**
@@ -400,6 +441,7 @@ if ( ! CUSTOM_TAGS ) {
                'q' => array(
                        'cite' => true,
                ),
                'q' => array(
                        'cite' => true,
                ),
+               's' => array(),
                'strike' => array(),
                'strong' => array(),
        );
                'strike' => array(),
                'strong' => array(),
        );
@@ -498,27 +540,42 @@ function wp_kses( $string, $allowed_html, $allowed_protocols = array() ) {
 function wp_kses_allowed_html( $context = '' ) {
        global $allowedposttags, $allowedtags, $allowedentitynames;
 
 function wp_kses_allowed_html( $context = '' ) {
        global $allowedposttags, $allowedtags, $allowedentitynames;
 
-       if ( is_array( $context ) )
+       if ( is_array( $context ) ) {
+               /**
+                * Filter HTML elements allowed for a given context.
+                *
+                * @since 3.5.0
+                *
+                * @param string $tags    Allowed tags, attributes, and/or entities.
+                * @param string $context Context to judge allowed tags by. Allowed values are 'post',
+                *                        'data', 'strip', 'entities', 'explicit', or the name of a filter.
+                */
                return apply_filters( 'wp_kses_allowed_html', $context, 'explicit' );
                return apply_filters( 'wp_kses_allowed_html', $context, 'explicit' );
+       }
 
        switch ( $context ) {
                case 'post':
 
        switch ( $context ) {
                case 'post':
+                       /** This filter is documented in wp-includes/kses.php */
                        return apply_filters( 'wp_kses_allowed_html', $allowedposttags, $context );
                        return apply_filters( 'wp_kses_allowed_html', $allowedposttags, $context );
-                       break;
+
                case 'user_description':
                case 'pre_user_description':
                        $tags = $allowedtags;
                        $tags['a']['rel'] = true;
                case 'user_description':
                case 'pre_user_description':
                        $tags = $allowedtags;
                        $tags['a']['rel'] = true;
+                       /** This filter is documented in wp-includes/kses.php */
                        return apply_filters( 'wp_kses_allowed_html', $tags, $context );
                        return apply_filters( 'wp_kses_allowed_html', $tags, $context );
-                       break;
+
                case 'strip':
                case 'strip':
+                       /** This filter is documented in wp-includes/kses.php */
                        return apply_filters( 'wp_kses_allowed_html', array(), $context );
                        return apply_filters( 'wp_kses_allowed_html', array(), $context );
-                       break;
+
                case 'entities':
                case 'entities':
+                       /** This filter is documented in wp-includes/kses.php */
                        return apply_filters( 'wp_kses_allowed_html', $allowedentitynames, $context);
                        return apply_filters( 'wp_kses_allowed_html', $allowedentitynames, $context);
-                       break;
+
                case 'data':
                default:
                case 'data':
                default:
+                       /** This filter is documented in wp-includes/kses.php */
                        return apply_filters( 'wp_kses_allowed_html', $allowedtags, $context );
        }
 }
                        return apply_filters( 'wp_kses_allowed_html', $allowedtags, $context );
        }
 }
@@ -537,7 +594,16 @@ function wp_kses_allowed_html( $context = '' ) {
  * @return string Filtered content through 'pre_kses' hook
  */
 function wp_kses_hook( $string, $allowed_html, $allowed_protocols ) {
  * @return string Filtered content through 'pre_kses' hook
  */
 function wp_kses_hook( $string, $allowed_html, $allowed_protocols ) {
-       $string = apply_filters('pre_kses', $string, $allowed_html, $allowed_protocols);
+       /**
+        * Filter content to be run through kses.
+        *
+        * @since 2.3.0
+        *
+        * @param string $string            Content to run through kses.
+        * @param array  $allowed_html      Allowed HTML elements.
+        * @param array  $allowed_protocols Allowed protocol in links.
+        */
+       $string = apply_filters( 'pre_kses', $string, $allowed_html, $allowed_protocols );
        return $string;
 }
 
        return $string;
 }
 
@@ -596,7 +662,6 @@ function _wp_kses_split_callback( $match ) {
  *
  * @access private
  * @since 1.0.0
  *
  * @access private
  * @since 1.0.0
- * @uses wp_kses_attr()
  *
  * @param string $string Content to filter
  * @param array $allowed_html Allowed HTML elements
  *
  * @param string $string Content to filter
  * @param array $allowed_html Allowed HTML elements
@@ -608,7 +673,7 @@ function wp_kses_split2($string, $allowed_html, $allowed_protocols) {
 
        if (substr($string, 0, 1) != '<')
                return '&gt;';
 
        if (substr($string, 0, 1) != '<')
                return '&gt;';
-       # It matched a ">" character
+       // It matched a ">" character
 
        if ( '<!--' == substr( $string, 0, 4 ) ) {
                $string = str_replace( array('<!--', '-->'), '', $string );
 
        if ( '<!--' == substr( $string, 0, 4 ) ) {
                $string = str_replace( array('<!--', '-->'), '', $string );
@@ -622,11 +687,11 @@ function wp_kses_split2($string, $allowed_html, $allowed_protocols) {
                $string = preg_replace('/-$/', '', $string);
                return "<!--{$string}-->";
        }
                $string = preg_replace('/-$/', '', $string);
                return "<!--{$string}-->";
        }
-       # Allow HTML comments
+       // Allow HTML comments
 
        if (!preg_match('%^<\s*(/\s*)?([a-zA-Z0-9]+)([^>]*)>?$%', $string, $matches))
                return '';
 
        if (!preg_match('%^<\s*(/\s*)?([a-zA-Z0-9]+)([^>]*)>?$%', $string, $matches))
                return '';
-       # It's seriously malformed
+       // It's seriously malformed
 
        $slash = trim($matches[1]);
        $elem = $matches[2];
 
        $slash = trim($matches[1]);
        $elem = $matches[2];
@@ -637,11 +702,11 @@ function wp_kses_split2($string, $allowed_html, $allowed_protocols) {
 
        if ( ! isset($allowed_html[strtolower($elem)]) )
                return '';
 
        if ( ! isset($allowed_html[strtolower($elem)]) )
                return '';
-       # They are using a not allowed HTML element
+       // They are using a not allowed HTML element
 
        if ($slash != '')
                return "</$elem>";
 
        if ($slash != '')
                return "</$elem>";
-       # No attributes are allowed for closing elements
+       // No attributes are allowed for closing elements
 
        return wp_kses_attr( $elem, $attrlist, $allowed_html, $allowed_protocols );
 }
 
        return wp_kses_attr( $elem, $attrlist, $allowed_html, $allowed_protocols );
 }
@@ -664,7 +729,7 @@ function wp_kses_split2($string, $allowed_html, $allowed_protocols) {
  * @return string Sanitized HTML element
  */
 function wp_kses_attr($element, $attr, $allowed_html, $allowed_protocols) {
  * @return string Sanitized HTML element
  */
 function wp_kses_attr($element, $attr, $allowed_html, $allowed_protocols) {
-       # Is there a closing XHTML slash at the end of the attributes?
+       // Is there a closing XHTML slash at the end of the attributes?
 
        if ( ! is_array( $allowed_html ) )
                $allowed_html = wp_kses_allowed_html( $allowed_html );
 
        if ( ! is_array( $allowed_html ) )
                $allowed_html = wp_kses_allowed_html( $allowed_html );
@@ -673,25 +738,25 @@ function wp_kses_attr($element, $attr, $allowed_html, $allowed_protocols) {
        if (preg_match('%\s*/\s*$%', $attr))
                $xhtml_slash = ' /';
 
        if (preg_match('%\s*/\s*$%', $attr))
                $xhtml_slash = ' /';
 
-       # Are any attributes allowed at all for this element?
+       // Are any attributes allowed at all for this element?
        if ( ! isset($allowed_html[strtolower($element)]) || count($allowed_html[strtolower($element)]) == 0 )
                return "<$element$xhtml_slash>";
 
        if ( ! isset($allowed_html[strtolower($element)]) || count($allowed_html[strtolower($element)]) == 0 )
                return "<$element$xhtml_slash>";
 
-       # Split it
+       // Split it
        $attrarr = wp_kses_hair($attr, $allowed_protocols);
 
        $attrarr = wp_kses_hair($attr, $allowed_protocols);
 
-       # Go through $attrarr, and save the allowed attributes for this element
-       # in $attr2
+       // Go through $attrarr, and save the allowed attributes for this element
+       // in $attr2
        $attr2 = '';
 
        $allowed_attr = $allowed_html[strtolower($element)];
        foreach ($attrarr as $arreach) {
                if ( ! isset( $allowed_attr[strtolower($arreach['name'])] ) )
        $attr2 = '';
 
        $allowed_attr = $allowed_html[strtolower($element)];
        foreach ($attrarr as $arreach) {
                if ( ! isset( $allowed_attr[strtolower($arreach['name'])] ) )
-                       continue; # the attribute is not allowed
+                       continue; // the attribute is not allowed
 
                $current = $allowed_attr[strtolower($arreach['name'])];
                if ( $current == '' )
 
                $current = $allowed_attr[strtolower($arreach['name'])];
                if ( $current == '' )
-                       continue; # the attribute is not allowed
+                       continue; // the attribute is not allowed
 
                if ( strtolower( $arreach['name'] ) == 'style' ) {
                        $orig_value = $arreach['value'];
 
                if ( strtolower( $arreach['name'] ) == 'style' ) {
                        $orig_value = $arreach['value'];
@@ -706,10 +771,10 @@ function wp_kses_attr($element, $attr, $allowed_html, $allowed_protocols) {
 
                if ( ! is_array($current) ) {
                        $attr2 .= ' '.$arreach['whole'];
 
                if ( ! is_array($current) ) {
                        $attr2 .= ' '.$arreach['whole'];
-               # there are no checks
+               // there are no checks
 
                } else {
 
                } else {
-                       # there are some checks
+                       // there are some checks
                        $ok = true;
                        foreach ($current as $currkey => $currval) {
                                if ( ! wp_kses_check_attr_val($arreach['value'], $arreach['vless'], $currkey, $currval) ) {
                        $ok = true;
                        foreach ($current as $currkey => $currval) {
                                if ( ! wp_kses_check_attr_val($arreach['value'], $arreach['vless'], $currkey, $currval) ) {
@@ -719,11 +784,11 @@ function wp_kses_attr($element, $attr, $allowed_html, $allowed_protocols) {
                        }
 
                        if ( $ok )
                        }
 
                        if ( $ok )
-                               $attr2 .= ' '.$arreach['whole']; # it passed them
-               } # if !is_array($current)
-       } # foreach
+                               $attr2 .= ' '.$arreach['whole']; // it passed them
+               } // if !is_array($current)
+       } // foreach
 
 
-       # Remove any "<" or ">" characters
+       // Remove any "<" or ">" characters
        $attr2 = preg_replace('/[<>]/', '', $attr2);
 
        return "<$element$attr2$xhtml_slash>";
        $attr2 = preg_replace('/[<>]/', '', $attr2);
 
        return "<$element$attr2$xhtml_slash>";
@@ -752,25 +817,25 @@ function wp_kses_hair($attr, $allowed_protocols) {
        $attrname = '';
        $uris = array('xmlns', 'profile', 'href', 'src', 'cite', 'classid', 'codebase', 'data', 'usemap', 'longdesc', 'action');
 
        $attrname = '';
        $uris = array('xmlns', 'profile', 'href', 'src', 'cite', 'classid', 'codebase', 'data', 'usemap', 'longdesc', 'action');
 
-       # Loop through the whole attribute list
+       // Loop through the whole attribute list
 
        while (strlen($attr) != 0) {
 
        while (strlen($attr) != 0) {
-               $working = 0; # Was the last operation successful?
+               $working = 0; // Was the last operation successful?
 
                switch ($mode) {
 
                switch ($mode) {
-                       case 0 : # attribute name, href for instance
+                       case 0 : // attribute name, href for instance
 
 
-                               if (preg_match('/^([-a-zA-Z]+)/', $attr, $match)) {
+                               if ( preg_match('/^([-a-zA-Z:]+)/', $attr, $match ) ) {
                                        $attrname = $match[1];
                                        $working = $mode = 1;
                                        $attrname = $match[1];
                                        $working = $mode = 1;
-                                       $attr = preg_replace('/^[-a-zA-Z]+/', '', $attr);
+                                       $attr = preg_replace( '/^[-a-zA-Z:]+/', '', $attr );
                                }
 
                                break;
 
                                }
 
                                break;
 
-                       case 1 : # equals sign or valueless ("selected")
+                       case 1 : // equals sign or valueless ("selected")
 
 
-                               if (preg_match('/^\s*=\s*/', $attr)) # equals sign
+                               if (preg_match('/^\s*=\s*/', $attr)) // equals sign
                                        {
                                        $working = 1;
                                        $mode = 2;
                                        {
                                        $working = 1;
                                        $mode = 2;
@@ -778,7 +843,7 @@ function wp_kses_hair($attr, $allowed_protocols) {
                                        break;
                                }
 
                                        break;
                                }
 
-                               if (preg_match('/^\s+/', $attr)) # valueless
+                               if (preg_match('/^\s+/', $attr)) // valueless
                                        {
                                        $working = 1;
                                        $mode = 0;
                                        {
                                        $working = 1;
                                        $mode = 0;
@@ -790,10 +855,10 @@ function wp_kses_hair($attr, $allowed_protocols) {
 
                                break;
 
 
                                break;
 
-                       case 2 : # attribute value, a URL after href= for instance
+                       case 2 : // attribute value, a URL after href= for instance
 
                                if (preg_match('%^"([^"]*)"(\s+|/?$)%', $attr, $match))
 
                                if (preg_match('%^"([^"]*)"(\s+|/?$)%', $attr, $match))
-                                       # "value"
+                                       // "value"
                                        {
                                        $thisval = $match[1];
                                        if ( in_array(strtolower($attrname), $uris) )
                                        {
                                        $thisval = $match[1];
                                        if ( in_array(strtolower($attrname), $uris) )
@@ -809,7 +874,7 @@ function wp_kses_hair($attr, $allowed_protocols) {
                                }
 
                                if (preg_match("%^'([^']*)'(\s+|/?$)%", $attr, $match))
                                }
 
                                if (preg_match("%^'([^']*)'(\s+|/?$)%", $attr, $match))
-                                       # 'value'
+                                       // 'value'
                                        {
                                        $thisval = $match[1];
                                        if ( in_array(strtolower($attrname), $uris) )
                                        {
                                        $thisval = $match[1];
                                        if ( in_array(strtolower($attrname), $uris) )
@@ -825,7 +890,7 @@ function wp_kses_hair($attr, $allowed_protocols) {
                                }
 
                                if (preg_match("%^([^\s\"']+)(\s+|/?$)%", $attr, $match))
                                }
 
                                if (preg_match("%^([^\s\"']+)(\s+|/?$)%", $attr, $match))
-                                       # value
+                                       // value
                                        {
                                        $thisval = $match[1];
                                        if ( in_array(strtolower($attrname), $uris) )
                                        {
                                        $thisval = $match[1];
                                        if ( in_array(strtolower($attrname), $uris) )
@@ -834,25 +899,25 @@ function wp_kses_hair($attr, $allowed_protocols) {
                                        if(false === array_key_exists($attrname, $attrarr)) {
                                                $attrarr[$attrname] = array ('name' => $attrname, 'value' => $thisval, 'whole' => "$attrname=\"$thisval\"", 'vless' => 'n');
                                        }
                                        if(false === array_key_exists($attrname, $attrarr)) {
                                                $attrarr[$attrname] = array ('name' => $attrname, 'value' => $thisval, 'whole' => "$attrname=\"$thisval\"", 'vless' => 'n');
                                        }
-                                       # We add quotes to conform to W3C's HTML spec.
+                                       // We add quotes to conform to W3C's HTML spec.
                                        $working = 1;
                                        $mode = 0;
                                        $attr = preg_replace("%^[^\s\"']+(\s+|$)%", '', $attr);
                                }
 
                                break;
                                        $working = 1;
                                        $mode = 0;
                                        $attr = preg_replace("%^[^\s\"']+(\s+|$)%", '', $attr);
                                }
 
                                break;
-               } # switch
+               } // switch
 
 
-               if ($working == 0) # not well formed, remove and try again
+               if ($working == 0) // not well formed, remove and try again
                {
                        $attr = wp_kses_html_error($attr);
                        $mode = 0;
                }
                {
                        $attr = wp_kses_html_error($attr);
                        $mode = 0;
                }
-       } # while
+       } // while
 
        if ($mode == 1 && false === array_key_exists($attrname, $attrarr))
 
        if ($mode == 1 && false === array_key_exists($attrname, $attrarr))
-               # special case, for when the attribute list ends with a valueless
-               # attribute like "selected"
+               // special case, for when the attribute list ends with a valueless
+               // attribute like "selected"
                $attrarr[$attrname] = array ('name' => $attrname, 'value' => '', 'whole' => $attrname, 'vless' => 'y');
 
        return $attrarr;
                $attrarr[$attrname] = array ('name' => $attrname, 'value' => '', 'whole' => $attrname, 'vless' => 'y');
 
        return $attrarr;
@@ -877,28 +942,28 @@ function wp_kses_check_attr_val($value, $vless, $checkname, $checkvalue) {
 
        switch (strtolower($checkname)) {
                case 'maxlen' :
 
        switch (strtolower($checkname)) {
                case 'maxlen' :
-                       # The maxlen check makes sure that the attribute value has a length not
-                       # greater than the given value. This can be used to avoid Buffer Overflows
-                       # in WWW clients and various Internet servers.
+                       // The maxlen check makes sure that the attribute value has a length not
+                       // greater than the given value. This can be used to avoid Buffer Overflows
+                       // in WWW clients and various Internet servers.
 
                        if (strlen($value) > $checkvalue)
                                $ok = false;
                        break;
 
                case 'minlen' :
 
                        if (strlen($value) > $checkvalue)
                                $ok = false;
                        break;
 
                case 'minlen' :
-                       # The minlen check makes sure that the attribute value has a length not
-                       # smaller than the given value.
+                       // The minlen check makes sure that the attribute value has a length not
+                       // smaller than the given value.
 
                        if (strlen($value) < $checkvalue)
                                $ok = false;
                        break;
 
                case 'maxval' :
 
                        if (strlen($value) < $checkvalue)
                                $ok = false;
                        break;
 
                case 'maxval' :
-                       # The maxval check does two things: it checks that the attribute value is
-                       # an integer from 0 and up, without an excessive amount of zeroes or
-                       # whitespace (to avoid Buffer Overflows). It also checks that the attribute
-                       # value is not greater than the given value.
-                       # This check can be used to avoid Denial of Service attacks.
+                       // The maxval check does two things: it checks that the attribute value is
+                       // an integer from 0 and up, without an excessive amount of zeroes or
+                       // whitespace (to avoid Buffer Overflows). It also checks that the attribute
+                       // value is not greater than the given value.
+                       // This check can be used to avoid Denial of Service attacks.
 
                        if (!preg_match('/^\s{0,6}[0-9]{1,6}\s{0,6}$/', $value))
                                $ok = false;
 
                        if (!preg_match('/^\s{0,6}[0-9]{1,6}\s{0,6}$/', $value))
                                $ok = false;
@@ -907,8 +972,8 @@ function wp_kses_check_attr_val($value, $vless, $checkname, $checkvalue) {
                        break;
 
                case 'minval' :
                        break;
 
                case 'minval' :
-                       # The minval check makes sure that the attribute value is a positive integer,
-                       # and that it is not smaller than the given value.
+                       // The minval check makes sure that the attribute value is a positive integer,
+                       // and that it is not smaller than the given value.
 
                        if (!preg_match('/^\s{0,6}[0-9]{1,6}\s{0,6}$/', $value))
                                $ok = false;
 
                        if (!preg_match('/^\s{0,6}[0-9]{1,6}\s{0,6}$/', $value))
                                $ok = false;
@@ -917,15 +982,15 @@ function wp_kses_check_attr_val($value, $vless, $checkname, $checkvalue) {
                        break;
 
                case 'valueless' :
                        break;
 
                case 'valueless' :
-                       # The valueless check makes sure if the attribute has a value
-                       # (like <a href="blah">) or not (<option selected>). If the given value
-                       # is a "y" or a "Y", the attribute must not have a value.
-                       # If the given value is an "n" or an "N", the attribute must have one.
+                       // The valueless check makes sure if the attribute has a value
+                       // (like <a href="blah">) or not (<option selected>). If the given value
+                       // is a "y" or a "Y", the attribute must not have a value.
+                       // If the given value is an "n" or an "N", the attribute must have one.
 
                        if (strtolower($checkvalue) != $vless)
                                $ok = false;
                        break;
 
                        if (strtolower($checkvalue) != $vless)
                                $ok = false;
                        break;
-       } # switch
+       } // switch
 
        return $ok;
 }
 
        return $ok;
 }
@@ -960,7 +1025,9 @@ function wp_kses_bad_protocol($string, $allowed_protocols) {
 }
 
 /**
 }
 
 /**
- * Removes any null characters in $string.
+ * Removes any invalid control characters in $string.
+ *
+ * Also removes any instance of the '\0' string.
  *
  * @since 1.0.0
  *
  *
  * @since 1.0.0
  *
@@ -968,7 +1035,7 @@ function wp_kses_bad_protocol($string, $allowed_protocols) {
  * @return string
  */
 function wp_kses_no_null($string) {
  * @return string
  */
 function wp_kses_no_null($string) {
-       $string = preg_replace('/\0+/', '', $string);
+       $string = preg_replace('/[\x00-\x08\x0B\x0C\x0E-\x1F]/', '', $string);
        $string = preg_replace('/(\\\\0)+/', '', $string);
 
        return $string;
        $string = preg_replace('/(\\\\0)+/', '', $string);
 
        return $string;
@@ -1008,8 +1075,8 @@ function wp_kses_array_lc($inarray) {
                foreach ( (array) $inval as $inkey2 => $inval2) {
                        $outkey2 = strtolower($inkey2);
                        $outarray[$outkey][$outkey2] = $inval2;
                foreach ( (array) $inval as $inkey2 => $inval2) {
                        $outkey2 = strtolower($inkey2);
                        $outarray[$outkey][$outkey2] = $inval2;
-               } # foreach $inval
-       } # foreach $inarray
+               } // foreach $inval
+       } // foreach $inarray
 
        return $outarray;
 }
 
        return $outarray;
 }
@@ -1106,8 +1173,8 @@ function wp_kses_bad_protocol_once2( $string, $allowed_protocols ) {
 /**
  * Converts and fixes HTML entities.
  *
 /**
  * Converts and fixes HTML entities.
  *
- * This function normalizes HTML entities. It will convert "AT&T" to the correct
- * "AT&amp;T", "&#00058;" to "&#58;", "&#XYZZY;" to "&amp;#XYZZY;" and so on.
+ * This function normalizes HTML entities. It will convert `AT&T` to the correct
+ * `AT&amp;T`, `&#00058;` to `&#58;`, `&#XYZZY;` to `&amp;#XYZZY;` and so on.
  *
  * @since 1.0.0
  *
  *
  * @since 1.0.0
  *
@@ -1115,11 +1182,11 @@ function wp_kses_bad_protocol_once2( $string, $allowed_protocols ) {
  * @return string Content with normalized entities
  */
 function wp_kses_normalize_entities($string) {
  * @return string Content with normalized entities
  */
 function wp_kses_normalize_entities($string) {
-       # Disarm all entities by converting & to &amp;
+       // Disarm all entities by converting & to &amp;
 
        $string = str_replace('&', '&amp;', $string);
 
 
        $string = str_replace('&', '&amp;', $string);
 
-       # Change back the allowed entities in our entity whitelist
+       // Change back the allowed entities in our entity whitelist
 
        $string = preg_replace_callback('/&amp;([A-Za-z]{2,8}[0-9]{0,2});/', 'wp_kses_named_entities', $string);
        $string = preg_replace_callback('/&amp;#(0*[0-9]{1,7});/', 'wp_kses_normalize_entities2', $string);
 
        $string = preg_replace_callback('/&amp;([A-Za-z]{2,8}[0-9]{0,2});/', 'wp_kses_named_entities', $string);
        $string = preg_replace_callback('/&amp;#(0*[0-9]{1,7});/', 'wp_kses_normalize_entities2', $string);
@@ -1152,8 +1219,8 @@ function wp_kses_named_entities($matches) {
 /**
  * Callback for wp_kses_normalize_entities() regular expression.
  *
 /**
  * Callback for wp_kses_normalize_entities() regular expression.
  *
- * This function helps wp_kses_normalize_entities() to only accept 16-bit values
- * and nothing more for &#number; entities.
+ * This function helps {@see wp_kses_normalize_entities()} to only accept 16-bit
+ * values and nothing more for `&#number;` entities.
  *
  * @access private
  * @since 1.0.0
  *
  * @access private
  * @since 1.0.0
@@ -1211,9 +1278,9 @@ function valid_unicode($i) {
 /**
  * Convert all entities to their character counterparts.
  *
 /**
  * Convert all entities to their character counterparts.
  *
- * This function decodes numeric HTML entities (&#65; and &#x41;). It doesn't do
- * anything with other entities like &auml;, but we don't need them in the URL
- * protocol whitelisting system anyway.
+ * This function decodes numeric HTML entities (`&#65;` and `&#x41;`).
+ * It doesn't do anything with other entities like &auml;, but we don't
+ * need them in the URL protocol whitelisting system anyway.
  *
  * @since 1.0.0
  *
  *
  * @since 1.0.0
  *
@@ -1251,7 +1318,6 @@ function _wp_kses_decode_entities_chr_hexdec( $match ) {
  * Sanitize content with allowed HTML Kses rules.
  *
  * @since 1.0.0
  * Sanitize content with allowed HTML Kses rules.
  *
  * @since 1.0.0
- * @uses $allowedtags
  *
  * @param string $data Content to filter, expected to be escaped with slashes
  * @return string Filtered content
  *
  * @param string $data Content to filter, expected to be escaped with slashes
  * @return string Filtered content
@@ -1264,7 +1330,6 @@ function wp_filter_kses( $data ) {
  * Sanitize content with allowed HTML Kses rules.
  *
  * @since 2.9.0
  * Sanitize content with allowed HTML Kses rules.
  *
  * @since 2.9.0
- * @uses $allowedtags
  *
  * @param string $data Content to filter, expected to not be escaped
  * @return string Filtered content
  *
  * @param string $data Content to filter, expected to not be escaped
  * @return string Filtered content
@@ -1325,7 +1390,6 @@ function wp_filter_nohtml_kses( $data ) {
  * 'excerpt_save_pre', and 'content_filtered_save_pre' hooks.
  *
  * @since 2.0.0
  * 'excerpt_save_pre', and 'content_filtered_save_pre' hooks.
  *
  * @since 2.0.0
- * @uses add_filter() See description for what functions are added to what hooks.
  */
 function kses_init_filters() {
        // Normal filtering
  */
 function kses_init_filters() {
        // Normal filtering
@@ -1380,9 +1444,6 @@ function kses_remove_filters() {
  * to have Kses filter the content. If the user does not have unfiltered_html
  * capability, then Kses filters are added.
  *
  * to have Kses filter the content. If the user does not have unfiltered_html
  * capability, then Kses filters are added.
  *
- * @uses kses_remove_filters() Removes the Kses filters
- * @uses kses_init_filters() Adds the Kses filters back if the user
- *             does not have unfiltered HTML capability.
  * @since 2.0.0
  */
 function kses_init() {
  * @since 2.0.0
  */
 function kses_init() {
@@ -1392,9 +1453,6 @@ function kses_init() {
                kses_init_filters();
 }
 
                kses_init_filters();
 }
 
-add_action('init', 'kses_init');
-add_action('set_current_user', 'kses_init');
-
 /**
  * Inline CSS filter
  *
 /**
  * Inline CSS filter
  *
@@ -1407,10 +1465,18 @@ function safecss_filter_attr( $css, $deprecated = '' ) {
        $css = wp_kses_no_null($css);
        $css = str_replace(array("\n","\r","\t"), '', $css);
 
        $css = wp_kses_no_null($css);
        $css = str_replace(array("\n","\r","\t"), '', $css);
 
-       if ( preg_match( '%[\\(&=}]|/\*%', $css ) ) // remove any inline css containing \ ( & } = or comments
+       if ( preg_match( '%[\\\\(&=}]|/\*%', $css ) ) // remove any inline css containing \ ( & } = or comments
                return '';
 
        $css_array = explode( ';', trim( $css ) );
                return '';
 
        $css_array = explode( ';', trim( $css ) );
+
+       /**
+        * Filter list of allowed CSS attributes.
+        *
+        * @since 2.8.1
+        *
+        * @param array $attr List of allowed CSS attributes.
+        */
        $allowed_attr = apply_filters( 'safe_style_css', array( 'text-align', 'margin', 'color', 'float',
        'border', 'background', 'background-color', 'border-bottom', 'border-bottom-color',
        'border-bottom-style', 'border-bottom-width', 'border-collapse', 'border-color', 'border-left',
        $allowed_attr = apply_filters( 'safe_style_css', array( 'text-align', 'margin', 'color', 'float',
        'border', 'background', 'background-color', 'border-bottom', 'border-bottom-color',
        'border-bottom-style', 'border-bottom-width', 'border-collapse', 'border-color', 'border-left',
@@ -1464,6 +1530,7 @@ function _wp_add_global_attributes( $value ) {
                'id' => true,
                'style' => true,
                'title' => true,
                'id' => true,
                'style' => true,
                'title' => true,
+               'role' => true,
        );
 
        if ( true === $value )
        );
 
        if ( true === $value )