From aba2a6bcfd72f129e3bbcd9463ac5b0fd38e8b25 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Wed, 26 Nov 2014 03:52:22 +0000 Subject: [PATCH] Fix the PHPDoc example for _split_str_by_whitespace(). Props voldemortensen. Fixes #30504 Built from https://develop.svn.wordpress.org/trunk@30575 git-svn-id: http://core.svn.wordpress.org/trunk@30565 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 3f9ae8e47e..cf43ea0dc5 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -1944,7 +1944,7 @@ function make_clickable( $text ) { * 4 => '123456789 ', // 10 characters: '123456789 1234567890a' was too long * 5 => '1234567890a ', // 12 characters: Too long, but no inner whitespace on which to split * 6 => ' 45678 ', // 11 characters: Perfect split - * 7 => '1 3 5 7 9', // 9 characters: End of $string + * 7 => '1 3 5 7 90 ', // 11 characters: End of $string * ); * * @since 3.4.0 diff --git a/wp-includes/version.php b/wp-includes/version.php index af4533b184..c629c27784 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-beta2-30574'; +$wp_version = '4.1-beta2-30575'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.