Customize: Avoid extra tabs in a textarea in `WP_Customize_Control::render_content()`.

See #43252.
Built from https://develop.svn.wordpress.org/trunk@42673


git-svn-id: http://core.svn.wordpress.org/trunk@42501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2018-02-08 10:59:30 +00:00
parent a5958a289b
commit ef4f47d00f
2 changed files with 3 additions and 4 deletions

View File

@ -568,9 +568,8 @@ class WP_Customize_Control {
rows="5"
<?php echo $describedby_attr; ?>
<?php $this->input_attrs(); ?>
<?php $this->link(); ?>>
<?php echo esc_textarea( $this->value() ); ?>
</textarea>
<?php $this->link(); ?>
><?php echo esc_textarea( $this->value() ); ?></textarea>
<?php
break;
case 'dropdown-pages':

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-42672';
$wp_version = '5.0-alpha-42673';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.