diff --git a/wp-includes/canonical.php b/wp-includes/canonical.php index a8f35c4b41..264a277886 100644 --- a/wp-includes/canonical.php +++ b/wp-includes/canonical.php @@ -478,6 +478,15 @@ function redirect_canonical( $requested_url = null, $do_redirect = true ) { // Hex encoded octets are case-insensitive. if ( false !== strpos($requested_url, '%') ) { if ( !function_exists('lowercase_octets') ) { + /** + * Converts the first hex-encoded octet match to lowercase. + * + * @since 3.1 + * @ignore + * + * @param array $matches Hex-encoded octet matches for the requested URL. + * @return string Lowercased version of the first match. + */ function lowercase_octets($matches) { return strtolower( $matches[0] ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 6fabd7e3f5..af0dbbbc6d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-beta3-38105'; +$wp_version = '4.6-beta3-38106'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.