Make WordPress Core


Ignore:
Timestamp:
09/03/2007 11:32:58 PM (18 years ago)
Author:
ryan
Message:

Remove trailing whitespace

File:
1 edited

Legend:

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

    r6025 r6026  
    99        return false;
    1010    }
    11     $i = mktime( 
    12         (int) substr( $m, 11, 2 ), (int) substr( $m, 14, 2 ), (int) substr( $m, 17, 2 ), 
    13         (int) substr( $m, 5, 2 ), (int) substr( $m, 8, 2 ), (int) substr( $m, 0, 4 ) 
     11    $i = mktime(
     12        (int) substr( $m, 11, 2 ), (int) substr( $m, 14, 2 ), (int) substr( $m, 17, 2 ),
     13        (int) substr( $m, 5, 2 ), (int) substr( $m, 8, 2 ), (int) substr( $m, 0, 4 )
    1414    );
    1515
     
    183183
    184184    // Allow plugins to short-circuit options.
    185     $pre = apply_filters( 'pre_option_' . $setting, false ); 
    186     if ( false !== $pre ) 
    187         return $pre; 
     185    $pre = apply_filters( 'pre_option_' . $setting, false );
     186    if ( false !== $pre )
     187        return $pre;
    188188
    189189    // prevent non-existent options from triggering multiple queries
     
    12041204    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    12051205    <link rel="stylesheet" href="<?php echo $admin_dir; ?>css/install.css" type="text/css" />
    1206 <?php 
     1206<?php
    12071207if ( ( $wp_locale ) && ('rtl' == $wp_locale->text_direction) ) : ?>
    12081208    <link rel="stylesheet" href="<?php echo $admin_dir; ?>css/install-rtl.css" type="text/css" />
     
    12211221
    12221222function _config_wp_home($url = '') {
    1223     if ( defined( 'WP_HOME' ) ) 
     1223    if ( defined( 'WP_HOME' ) )
    12241224        return WP_HOME;
    12251225    else return $url;
     
    12271227
    12281228function _config_wp_siteurl($url = '') {
    1229     if ( defined( 'WP_SITEURL' ) ) 
     1229    if ( defined( 'WP_SITEURL' ) )
    12301230        return WP_SITEURL;
    12311231    else return $url;
Note: See TracChangeset for help on using the changeset viewer.