Make WordPress Core


Ignore:
Timestamp:
11/19/2006 07:56:05 AM (19 years ago)
Author:
ryan
Message:

Remove trailing spaces and convert spaces to tabs. Props Nazgul. fixes #986

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/update-links.php

    r4144 r4495  
    2929        $response .= fgets($fs, 1160); // One TCP-IP packet
    3030    fclose($fs);
    31    
     31
    3232    $response = explode("\r\n\r\n", $response, 2);
    3333    $body = trim( $response[1] );
    3434    $body = str_replace(array("\r\n", "\r"), "\n", $body);
    35    
     35
    3636    $returns = explode("\n", $body);
    37    
     37
    3838    foreach ($returns as $return) :
    3939        $time = $wpdb->escape( substr($return, 0, 19) );
Note: See TracChangeset for help on using the changeset viewer.