Make WordPress Core


Ignore:
Timestamp:
06/14/2007 02:25:30 AM (19 years ago)
Author:
ryan
Message:

Trim empty lines. Nothing but newline.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/import/wordpress.php

    r5448 r5700  
    252252        echo '<h3>'.sprintf(__('All done.').' <a href="%s">'.__('Have fun!').'</a>', get_option('home')).'</h3>';
    253253    }
    254  
     254
    255255    function process_post($post) {
    256256        global $wpdb;
     
    259259        if ( $post_ID && !empty($this->posts_processed[$post_ID][1]) ) // Processed already
    260260            return 0;
    261      
     261
    262262        // There are only ever one of these
    263263        $post_title     = $this->get_tag( $post, 'title' );
     
    312312            if ( $post_id && $post_ID && $this->posts_processed[$post_ID] )
    313313                $this->posts_processed[$post_ID][1] = $post_id; // New ID.
    314            
     314
    315315            // Add categories.
    316316            if (count($categories) > 0) {
Note: See TracChangeset for help on using the changeset viewer.