From 80975befb8cf8ff39977c5f8590e3e8c12598e73 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Sun, 8 Nov 2015 20:34:34 +0000 Subject: [PATCH] Widgets: Fix typo in `WP_Widget_Tag_Cloud::form()`. Props skithund. Fixes #34623. git-svn-id: https://develop.svn.wordpress.org/trunk@35576 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/widgets/class-wp-widget-tag-cloud.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/widgets/class-wp-widget-tag-cloud.php b/src/wp-includes/widgets/class-wp-widget-tag-cloud.php index 9837f1da0b..99f7af6ea1 100644 --- a/src/wp-includes/widgets/class-wp-widget-tag-cloud.php +++ b/src/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;