Twenty Fourteen: fix a typo introduced in r25808, props kovshenin. See #25549.

Built from https://develop.svn.wordpress.org/trunk@25853


git-svn-id: http://core.svn.wordpress.org/trunk@25853 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Lance Willett 2013-10-24 22:57:09 +00:00
parent 48ce800aab
commit 6b6a2d4dc4
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ class Featured_Content {
<input class="small-text" type="number" step="1" min="1" max="<?php echo esc_attr( self::$max_posts ); ?>" id="featured-content-quantity" name="featured-content[quantity]" value="<?php echo esc_attr( $settings['quantity'] ); ?>">
</p>
<p>
<input type="checkbox" id="featured-content-hide-tag" name="featured-content[hide-tag]" <?php checked( $settings['hide-tag'], 1 ); ?>">
<input type="checkbox" id="featured-content-hide-tag" name="featured-content[hide-tag]" <?php checked( $settings['hide-tag'], 1 ); ?>>
<label for="featured-content-hide-tag"><?php _e( 'Hide tag from displaying in post meta and tag clouds.', 'twentyfourteen' ); ?></label>
</p>
</div>