From 5e0dac0f8f4047b6aa2cb6ca598b5f0d3ddf0447 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Sun, 8 Nov 2015 20:35:27 +0000 Subject: [PATCH] Widgets: Fix typo in `WP_Widget_Tag_Cloud::form()`. Props skithund. Fixes #34623. Built from https://develop.svn.wordpress.org/trunk@35576 git-svn-id: http://core.svn.wordpress.org/trunk@35540 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-includes/widgets/class-wp-widget-tag-cloud.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index f74edd7eb3..ef3eeef3c4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta3-35575'; +$wp_version = '4.4-beta3-35576'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/widgets/class-wp-widget-tag-cloud.php b/wp-includes/widgets/class-wp-widget-tag-cloud.php index 9837f1da0b..99f7af6ea1 100644 --- a/wp-includes/widgets/class-wp-widget-tag-cloud.php +++ b/wp-includes/widgets/class-wp-widget-tag-cloud.php @@ -129,7 +129,7 @@ class WP_Widget_Tag_Cloud extends WP_Widget { // No tag cloud supporting taxonomies found, display error message case 0: - echo '

' . __( 'The tag cloud will not be displayed since their are no taxonomies that support the tag cloud widget.' ) . '

'; + echo '

' . __( 'The tag cloud will not be displayed since there are no taxonomies that support the tag cloud widget.' ) . '

'; printf( $input, '' ); break;