Make WordPress Core


Ignore:
Timestamp:
08/09/2008 05:36:14 AM (17 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

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

    r8595 r8600  
    286286
    287287    $filename = wp_unique_filename( $uploads['path'], $file['name'], $unique_filename_callback );
    288    
     288
    289289    // Strip the query strings.
    290290    $filename = str_replace('?','-', $filename);
    291291    $filename = str_replace('&','-', $filename);
    292    
     292
    293293    // Move the file to the uploads dir
    294294    $new_file = $uploads['path'] . "/$filename";
     
    472472    if ( 'direct' == $type )
    473473        return true;
    474        
     474
    475475    if( ! $credentials = get_option('ftp_credentials') )
    476476        $credentials = array();
Note: See TracChangeset for help on using the changeset viewer.