Make WordPress Core


Ignore:
Timestamp:
09/18/2007 04:32:22 PM (17 years ago)
Author:
ryan
Message:

Add checks for WP_Error. Props filosofo. see #4809

File:
1 edited

Legend:

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

    r6026 r6125  
    365365                            'comment_count'     => $post_nb_comment + $post_nb_trackback)
    366366                            );
     367                    if ( is_wp_error( $ret_id ) )
     368                        return $ret_id;
    367369                }
    368370                else
     
    383385                            'comment_count'     => $post_nb_comment + $post_nb_trackback)
    384386                            );
     387                    if ( is_wp_error( $ret_id ) )
     388                        return $ret_id;
    385389                }
    386390                $dcposts2wpposts[$post_id] = $ret_id;
     
    563567        // Post Import
    564568        $posts = $this->get_dc_posts();
    565         $this->posts2wp($posts);
     569        $result = $this->posts2wp($posts);
     570        if ( is_wp_error( $result ) )
     571            return $result;
    566572
    567573        echo '<form action="admin.php?import=dotclear&amp;step=4" method="post">';
     
    711717                break;
    712718            case 3 :
    713                 $this->import_posts();
     719                $result = $this->import_posts();
     720                if ( is_wp_error( $result ) )
     721                    echo $result->get_error_message();
    714722                break;
    715723            case 4 :
Note: See TracChangeset for help on using the changeset viewer.