Make WordPress Core


Ignore:
Timestamp:
12/14/2011 05:36:38 PM (14 years ago)
Author:
ryan
Message:

Remove extraneous spaces. Props kenan3008, dimadin. fixes #19501 #19433

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/upgrade.php

    r19593 r19596  
    7575        $user_id = wp_create_user($user_name, $user_password, $user_email);
    7676    } else {
    77         $message =  __('User already exists. Password inherited.');
     77        $message = __('User already exists. Password inherited.');
    7878    }
    7979
     
    16681668 * @since 1.5.0
    16691669 */
    1670 function make_db_current_silent(  $tables = 'all' ) {
     1670function make_db_current_silent( $tables = 'all' ) {
    16711671    $alterations = dbDelta( $tables );
    16721672}
     
    18491849    if (file_exists(ABSPATH . 'wp-layout.css')) {
    18501850        if (! make_site_theme_from_oldschool($theme_name, $template)) {
    1851             // TODO:  rm -rf the site theme directory.
     1851            // TODO: rm -rf the site theme directory.
    18521852            return false;
    18531853        }
    18541854    } else {
    18551855        if (! make_site_theme_from_default($theme_name, $template))
    1856             // TODO:  rm -rf the site theme directory.
     1856            // TODO: rm -rf the site theme directory.
    18571857            return false;
    18581858    }
Note: See TracChangeset for help on using the changeset viewer.