Add missing semicolon. props jcastaneda. fixes #24282.

git-svn-id: https://develop.svn.wordpress.org/trunk@24200 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2013-05-08 18:15:14 +00:00
parent b6bd2d56da
commit 15ffa40d64
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ class WP_Customize_Color_Control extends WP_Customize_Control {
<label>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<div class="customize-control-content">
<input class="color-picker-hex" type="text" maxlength="7" placeholder="<?php esc_attr_e( 'Hex Value' ); ?>"<?php echo $default_attr ?> />
<input class="color-picker-hex" type="text" maxlength="7" placeholder="<?php esc_attr_e( 'Hex Value' ); ?>"<?php echo $default_attr; ?> />
</div>
</label>
<?php