Make WordPress Core


Ignore:
Timestamp:
06/11/2010 08:19:35 PM (16 years ago)
Author:
ryan
Message:

Trim trailing whitespace.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/theme.php

    r15196 r15235  
    15481548            $repeat = 'repeat';
    15491549        $repeat = " background-repeat: $repeat;";
    1550    
     1550
    15511551        $position = get_theme_mod( 'background_position_x', 'left' );
    15521552        if ( ! in_array( $position, array( 'center', 'right', 'left' ) ) )
    15531553            $position = 'left';
    15541554        $position = " background-position: top $position;";
    1555    
     1555
    15561556        $attachment = get_theme_mod( 'background_attachment', 'scroll' );
    15571557        if ( ! in_array( $attachment, array( 'fixed', 'scroll' ) ) )
Note: See TracChangeset for help on using the changeset viewer.