Twenty Eleven: fix indentation (spaces to tabs). See #29127.

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


git-svn-id: http://core.svn.wordpress.org/trunk@31248 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Lance Willett 2015-01-22 00:44:22 +00:00
parent ff5628169e
commit 87279ec9ea
2 changed files with 6 additions and 6 deletions

View File

@ -330,13 +330,13 @@ if ( ! function_exists( 'twentyeleven_admin_header_image' ) ) :
function twentyeleven_admin_header_image() { ?>
<div id="headimg">
<?php
$color = get_header_textcolor();
$image = get_header_image();
$color = get_header_textcolor();
$image = get_header_image();
$style = 'display: none;';
if ( $color && $color != 'blank' ) {
if ( $color && $color != 'blank' ) {
$style = 'color: #' . $color . ';';
}
?>
}
?>
<h1 class="displaying-header-text"><a id="name" style="<?php echo esc_attr( $style ); ?>" onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1>
<div id="desc" class="displaying-header-text" style="<?php echo esc_attr( $style ); ?>"><?php bloginfo( 'description' ); ?></div>
<?php if ( $image ) : ?>

View File

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