Changeset 7069

Show
Ignore:
Timestamp:
02/27/08 21:22:25 (5 months ago)
Author:
ryan
Message:

Make sure term id is an int. Props tellyworth. fixes #5330 for 2.3

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.3/wp-admin/import/wordpress.php

    r6149 r7069  
    397397                        $tag_id = $tag_id['term_id']; 
    398398                    } 
    399                     $post_tags[] = $tag_id
     399                    $post_tags[] = intval($tag_id)
    400400                } 
    401401                wp_set_post_tags($post_id, $post_tags);