diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index b755bdd851..7ac1cfc595 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -1831,9 +1831,11 @@ endif; if ( !function_exists('wp_create_nonce') ) : /** - * Creates a cryptographic token tied to a specific action, user, and window of time. + * Creates a cryptographic token tied to a specific action, user, user session, + * and window of time. * * @since 2.0.3 + * @since 4.0.0 Session tokens were integrated with nonce creation * * @param string|int $action Scalar value to add context to the nonce. * @return string The token. diff --git a/wp-includes/version.php b/wp-includes/version.php index 58a2b21705..b325ceb79a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33826'; +$wp_version = '4.4-alpha-33827'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.