id summary reporter owner description type status priority milestone component version severity resolution keywords cc focuses 7925 update_post_meta() and delete_post_meta() not using wp_is_post_revision() on $post_id, resulting in multiple meta rows and incorrect return values misterbisson markjaquith "add_post_meta() uses the following block of code to make sure the passed $post_id is a real post, not a revision: ` // make sure meta is added to the post, not a revision if ( $the_post = wp_is_post_revision($post_id) ) $post_id = $the_post; ` However, update_post_meta() and delete_post_meta() do not do that. The bug is present in trunk." defect (bug) closed normal 2.7 General normal fixed post_meta