Docs: Add missing parameter and return notations to the DocBlock for `_wp_sanitize_utf8_in_redirect()`.
See #32246. Built from https://develop.svn.wordpress.org/trunk@35980 git-svn-id: http://core.svn.wordpress.org/trunk@35945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bc4a65a036
commit
7b19006ce1
|
@ -1270,6 +1270,9 @@ function wp_sanitize_redirect($location) {
|
|||
* @access private
|
||||
*
|
||||
* @see wp_sanitize_redirect()
|
||||
*
|
||||
* @param array $matches RegEx matches against the redirect location.
|
||||
* @return string URL-encoded version of the first RegEx match.
|
||||
*/
|
||||
function _wp_sanitize_utf8_in_redirect( $matches ) {
|
||||
return urlencode( $matches[0] );
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.5-alpha-35979';
|
||||
$wp_version = '4.5-alpha-35980';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue