diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 0da1f73aaa..b894b581c1 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -1128,7 +1128,7 @@ if ( !function_exists('wp_redirect') ) : * Exiting can also be selectively manipulated by using wp_redirect() as a conditional * in conjunction with the {@see 'wp_redirect'} and {@see 'wp_redirect_location'} hooks: * - * if ( wp_redirect( $url ) { + * if ( wp_redirect( $url ) ) { * exit; * } * diff --git a/wp-includes/version.php b/wp-includes/version.php index 0e22d25edc..d198810c9c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38349'; +$wp_version = '4.7-alpha-38350'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.