From 7ee5878a9c4ef2730f0695ef3e24615d505d7323 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 15 Apr 2017 09:28:43 +0000 Subject: [PATCH] Docs: Update the length limit in `set_site_transient()` docs after [34030]. Props lukecavanagh, jdgrimes. Fixes #40455. Built from https://develop.svn.wordpress.org/trunk@40432 git-svn-id: http://core.svn.wordpress.org/trunk@40330 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 d58ae6983f..8bc8edc932 100644 --- a/wp-includes/option.php +++ b/wp-includes/option.php @@ -1641,7 +1641,7 @@ function get_site_transient( $transient ) { * @see set_transient() * * @param string $transient Transient name. Expected to not be SQL-escaped. Must be - * 40 characters or fewer in length. + * 167 characters or fewer in length. * @param mixed $value Transient value. Expected to not be SQL-escaped. * @param int $expiration Optional. Time until expiration in seconds. Default 0 (no expiration). * @return bool False if value was not set and true if value was set. diff --git a/wp-includes/version.php b/wp-includes/version.php index c4381d62d8..5b520b9aea 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-40431'; +$wp_version = '4.8-alpha-40432'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.