Make WordPress Core

Changeset 31267


Ignore:
Timestamp:
01/22/2015 12:43:31 AM (10 years ago)
Author:
lancewillett
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyeleven/functions.php

    r31265 r31267  
    331331    <div id="headimg">
    332332        <?php
    333         $color = get_header_textcolor();
    334         $image = get_header_image();
     333        $color = get_header_textcolor();
     334        $image = get_header_image();
    335335        $style = 'display: none;';
    336         if ( $color && $color != 'blank' ) {
     336        if ( $color && $color != 'blank' ) {
    337337            $style = 'color: #' . $color . ';';
    338         }
    339         ?>
     338        }
     339        ?>
    340340        <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>
    341341        <div id="desc" class="displaying-header-text" style="<?php echo esc_attr( $style ); ?>"><?php bloginfo( 'description' ); ?></div>
Note: See TracChangeset for help on using the changeset viewer.