From 96b2923e625606aa174f3a2dc845e5483571dccd Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Fri, 10 Mar 2017 15:03:42 +0000 Subject: [PATCH] Docs: Remove the duplicate hook documentation for the newly introduced `send_auth_cookies` filter. See #39367 Built from https://develop.svn.wordpress.org/trunk@40264 git-svn-id: http://core.svn.wordpress.org/trunk@40184 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable.php | 8 +------- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 61b809c542..0ed2609d40 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -933,13 +933,7 @@ function wp_clear_auth_cookie() { */ do_action( 'clear_auth_cookie' ); - /** - * Allows preventing auth cookies from actually being sent to the client. - * - * @since 4.7.4 - * - * @param bool $send Whether to send auth cookies to the client. - */ + /** This filter is documented in wp-includes/pluggable.php */ if ( ! apply_filters( 'send_auth_cookies', true ) ) { return; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 2860afba22..d468a167cf 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-40263'; +$wp_version = '4.8-alpha-40264'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.