summaryrefslogtreecommitdiffstats
path: root/wp-includes/post.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-11-24 17:04:14 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-11-24 17:04:14 +0000
commitf3f3886b6ce0f9cdf2a663c450a1ddb8593bd799 (patch)
treee4ec667aae78a662485b750905182bf3d39c19ad /wp-includes/post.php
parent23f67568a169dd05954b92d198923850709baae3 (diff)
downloadwordpress-mu-f3f3886b6ce0f9cdf2a663c450a1ddb8593bd799.tar.gz
wordpress-mu-f3f3886b6ce0f9cdf2a663c450a1ddb8593bd799.tar.xz
wordpress-mu-f3f3886b6ce0f9cdf2a663c450a1ddb8593bd799.zip
WP Merge with revision 9860
git-svn-id: http://svn.automattic.com/wordpress-mu/branches/2.6@1542 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/post.php')
-rw-r--r--wp-includes/post.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/wp-includes/post.php b/wp-includes/post.php
index 54ce668..0a580f9 100644
--- a/wp-includes/post.php
+++ b/wp-includes/post.php
@@ -549,7 +549,9 @@ function add_post_meta($post_id, $meta_key, $meta_value, $unique = false) {
function delete_post_meta($post_id, $key, $value = '') {
global $wpdb;
- $post_id = absint( $post_id );
+ // make sure meta is added to the post, not a revision
+ if ( $the_post = wp_is_post_revision($post_id) )
+ $post_id = $the_post;
// expected_slashed ($key, $value)
$key = stripslashes( $key );
@@ -630,6 +632,10 @@ function get_post_meta($post_id, $key, $single = false) {
function update_post_meta($post_id, $meta_key, $meta_value, $prev_value = '') {
global $wpdb;
+ // make sure meta is added to the post, not a revision
+ if ( $the_post = wp_is_post_revision($post_id) )
+ $post_id = $the_post;
+
// expected_slashed ($meta_key)
$meta_key = stripslashes($meta_key);