mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-16 11:35:48 +00:00
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:
parent
23046c9593
commit
22f40058e5
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user