From 94775c9391e0d640250f1f1b8ef7d60406af060b Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 28 Aug 2015 15:29:21 +0000 Subject: [PATCH] Docs: Add a changelog entry to the `pre_set_transient_$transient` hook doc for the `$transient` parameter, added in [33738]. See #28402. Built from https://develop.svn.wordpress.org/trunk@33784 git-svn-id: http://core.svn.wordpress.org/trunk@33752 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/option.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/option.php b/wp-includes/option.php index eb12679691..03bc1aab2f 100644 --- a/wp-includes/option.php +++ b/wp-includes/option.php @@ -686,7 +686,8 @@ function set_transient( $transient, $value, $expiration = 0 ) { * The dynamic portion of the hook name, `$transient`, refers to the transient name. * * @since 3.0.0 - * @since 4.2.0 Added `$expiration` parameter. + * @since 4.2.0 The `$expiration` parameter was added. + * @since 4.4.0 The `$transient` parameter was added. * * @param mixed $value New value of transient. * @param int $expiration Time until expiration in seconds. diff --git a/wp-includes/version.php b/wp-includes/version.php index 631ded5d3b..7d07a5af37 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33783'; +$wp_version = '4.4-alpha-33784'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.