Use maybe_unserialized on all post_meta values on import to ensure we don't end up with double serialized data in the database. Fixes #10619 props znarfor.

git-svn-id: https://develop.svn.wordpress.org/trunk@12495 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2009-12-22 17:05:49 +00:00
parent 6e6e9f77b0
commit b7b7429478
1 changed files with 3 additions and 1 deletions

View File

@ -605,7 +605,9 @@ class WP_Import {
$key = $this->get_tag( $p, 'wp:meta_key' );
$value = $this->get_tag( $p, 'wp:meta_value' );
$value = stripslashes($value); // add_post_meta() will escape.
// get_post_meta would have done this but we read straight from the db on export so we could have a serialized string
$value = maybe_unserialize($value);
$this->process_post_meta($post_id, $key, $value);
} }