Make WordPress Core

Changeset 26154


Ignore:
Timestamp:
11/14/2013 04:56:27 AM (11 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: fix tabs to spaces in two files. See #25946.

Location:
trunk/src/wp-content/themes/twentyfourteen/inc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/inc/customizer.php

    r26153 r26154  
    2121
    2222    // Add custom description to Colors and Background sections.
    23     $wp_customize->get_section( 'colors' )->description           = __( 'Background may only be visible on wide screens.', 'twentyfourteen' );
    24     $wp_customize->get_section( 'background_image' )->description = __( 'Background may only be visible on wide screens.', 'twentyfourteen' );
     23    $wp_customize->get_section( 'colors' )->description           = __( 'Background may only be visible on wide screens.', 'twentyfourteen' );
     24    $wp_customize->get_section( 'background_image' )->description = __( 'Background may only be visible on wide screens.', 'twentyfourteen' );
    2525
    2626    // Add the custom accent color setting and control.
  • trunk/src/wp-content/themes/twentyfourteen/inc/widgets.php

    r26152 r26154  
    135135                                        $galleries = get_post_galleries( get_the_ID(), false );
    136136                                        if ( isset( $galleries[0]['ids'] ) )
    137                                             $images = explode( ',', $galleries[0]['ids'] );
     137                                            $images = explode( ',', $galleries[0]['ids'] );
    138138                                    } else {
    139139                                        $pattern = get_shortcode_regex();
Note: See TracChangeset for help on using the changeset viewer.