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/import/greymatter.php

    r4165 r4495  
    6767        return($string);
    6868    }
    69    
     69
    7070    function import() {
    7171        global $wpdb;
    72    
     72
    7373        $wpvarstoreset = array('gmpath', 'archivespath', 'lastentry');
    7474        for ($i=0; $i<count($wpvarstoreset); $i += 1) {
     
    137137
    138138    chdir($archivespath);
    139    
     139
    140140    for($i = 0; $i <= $lastentry; $i = $i + 1) {
    141        
     141
    142142        $entryfile = "";
    143        
     143
    144144        if ($i<10000000) {
    145145            $entryfile .= "0";
     
    195195            $comment_status = 'open';
    196196            $ping_status = 'closed';
    197            
     197
    198198            if ($post_ID = post_exists($post_title, '', $post_date)) {
    199199                echo ' ';
     
    304304
    305305    function GM_Import() {
    306         // Nothing. 
     306        // Nothing.
    307307    }
    308308}
Note: See TracChangeset for help on using the changeset viewer.