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
This commit is contained in:
parent
23c1050fb9
commit
5e0dac0f8f
|
@ -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.
|
||||
|
|
|
@ -129,7 +129,7 @@ class WP_Widget_Tag_Cloud extends WP_Widget {
|
|||
|
||||
// No tag cloud supporting taxonomies found, display error message
|
||||
case 0:
|
||||
echo '<p>' . __( 'The tag cloud will not be displayed since their are no taxonomies that support the tag cloud widget.' ) . '</p>';
|
||||
echo '<p>' . __( 'The tag cloud will not be displayed since there are no taxonomies that support the tag cloud widget.' ) . '</p>';
|
||||
printf( $input, '' );
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue