Changeset 6332

Show
Ignore:
Timestamp:
11/12/07 19:51:42 (8 months ago)
Author:
ryan
Message:

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

Files:

Legend:

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

    r6149 r6332  
    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);