From 99c85c5b45cddaa8b9ff7631ab9df48f6d4090c2 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 11 Sep 2015 15:10:27 +0000 Subject: [PATCH] Update the length limit in `set_transient()` docs after [34030]. Props OriginalEXE. Fixes #13310. Built from https://develop.svn.wordpress.org/trunk@34045 git-svn-id: http://core.svn.wordpress.org/trunk@34013 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/option.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/option.php b/wp-includes/option.php index 5749f8b775..ab8f81b875 100644 --- a/wp-includes/option.php +++ b/wp-includes/option.php @@ -670,7 +670,7 @@ function get_transient( $transient ) { * @since 2.8.0 * * @param string $transient Transient name. Expected to not be SQL-escaped. Must be - * 45 characters or fewer in length. + * 172 characters or fewer in length. * @param mixed $value Transient value. Must be serializable if non-scalar. * Expected to not be SQL-escaped. * @param int $expiration Optional. Time until expiration in seconds. Default 0. diff --git a/wp-includes/version.php b/wp-includes/version.php index 266c00c122..acff157fca 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34044'; +$wp_version = '4.4-alpha-34045'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.