Changeset 14755
- Timestamp:
- 05/20/2010 03:47:25 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/wordpress.php
r14497 r14755 602 602 $key = $this->get_tag( $p, 'wp:meta_key' ); 603 603 $value = $this->get_tag( $p, 'wp:meta_value' ); 604 $value = stripslashes($value); // add_post_meta() will escape.605 // get_post_meta would have done this but we read straight from the db on export so we could have a serialized string606 $value = maybe_unserialize($value);607 604 608 605 $this->process_post_meta($post_id, $key, $value);
Note: See TracChangeset
for help on using the changeset viewer.