From cd3af4b6d1ad5c949e85d0e41f1409275c0b5ed5 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sat, 26 May 2012 15:24:42 +0000 Subject: [PATCH] Theme Customizer: 'Header Text Color', not 'Text Color', when referring to the header text in the Colors section. props ocean90. see #19910. git-svn-id: https://develop.svn.wordpress.org/trunk@20933 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/class-wp-customize-manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 19c14570af..55e46a907b 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -682,7 +682,7 @@ final class WP_Customize_Manager { ) ); $this->add_control( new WP_Customize_Color_Control( $this, 'header_textcolor', array( - 'label' => __( 'Text Color' ), + 'label' => __( 'Header Text Color' ), 'section' => 'colors', ) ) );