Make WordPress Core


Ignore:
Timestamp:
02/05/2008 06:47:27 AM (17 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

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

    r6430 r6726  
    216216            $post->post_author = $this->checkauthor($post->post_author); //just so that if a post already exists, new users are not created by checkauthor
    217217            $post_id = wp_insert_post($post);
    218             if ( is_wp_error( $post_id ) ) 
     218            if ( is_wp_error( $post_id ) )
    219219                return $post_id;
    220220
     
    295295                $context = '';
    296296                $result = $this->save_post($post, $comments, $pings);
    297                 if ( is_wp_error( $result ) ) 
     297                if ( is_wp_error( $result ) )
    298298                    return $result;
    299299                $post = new StdClass;
     
    421421        $this->get_authors_from_post();
    422422        $result = $this->process_posts();
    423         if ( is_wp_error( $result ) ) 
     423        if ( is_wp_error( $result ) )
    424424            return $result;
    425425    }
Note: See TracChangeset for help on using the changeset viewer.