From cb0fc9c64b0ea81ffa2d25cc36bca72de6ba30da Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 30 May 2014 15:20:16 +0000 Subject: [PATCH] Update the `$secure_logged_in_cookie` variable in the 'secure_logged_in_cookie' hook docs following [28627]. See #15330. Built from https://develop.svn.wordpress.org/trunk@28628 git-svn-id: http://core.svn.wordpress.org/trunk@28448 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 73faa67e09..92e234d57b 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -840,9 +840,9 @@ function wp_set_auth_cookie($user_id, $remember = false, $secure = '') { * * @since 3.1.0 * - * @param bool $cookie Whether to use a secure cookie when logged-in. - * @param int $user_id User ID. - * @param bool $secure Whether the connection is secure. + * @param bool $secure_logged_in_cookie Whether to use a secure cookie when logged-in. + * @param int $user_id User ID. + * @param bool $secure Whether the connection is secure. */ $secure_logged_in_cookie = apply_filters( 'secure_logged_in_cookie', $secure_logged_in_cookie, $user_id, $secure );