Don't import _wp_attachment_metadata. It is regenerated when the attachment is imported.

git-svn-id: http://svn.automattic.com/wordpress/branches/2.8@11889 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-08-28 00:21:42 +00:00
parent 23046c9593
commit 22f40058e5
1 changed files with 2 additions and 2 deletions

View File

@ -684,8 +684,8 @@ class WP_Import {
}
function is_valid_meta_key($key) {
// skip _wp_attached_file metadata since we'll regenerate it from scratch
if ( $key == '_wp_attached_file' )
// skip attachment metadata since we'll regenerate it from scratch
if ( $key == '_wp_attached_file' || $key == '_wp_attachment_metadata' )
return false;
return $key;
}