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

git-svn-id: https://develop.svn.wordpress.org/trunk@11842 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-08-19 21:37:47 +00:00
parent 782977afbf
commit 051e34e38f
1 changed files with 2 additions and 2 deletions

View File

@ -688,8 +688,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;
}