Avoid read after updating meta in the database

@justinshreve Was there a reason this was added? I don’t see a reason
why it needs to be re-read if the array is up to date?
This commit is contained in:
Mike Jolley 2017-02-11 15:45:13 +00:00
parent ca1d49b2b6
commit 6cf98a7e4d
1 changed files with 1 additions and 2 deletions

View File

@ -423,6 +423,7 @@ abstract class WC_Data {
if ( is_null( $meta->value ) ) {
if ( ! empty( $meta->id ) ) {
$this->data_store->delete_meta( $this, $meta );
unset( $this->meta_data[ $array_key ] );
}
} elseif ( empty( $meta->id ) ) {
$new_meta_id = $this->data_store->add_meta( $this, $meta );
@ -435,8 +436,6 @@ abstract class WC_Data {
if ( ! empty( $this->cache_group ) ) {
WC_Cache_Helper::incr_cache_prefix( $this->cache_group );
}
$this->read_meta_data( true );
}
/**