Changeset 61788
- Timestamp:
- 03/03/2026 04:21:55 AM (2 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/collaboration/class-wp-sync-post-meta-storage.php
r61689 r61788 86 86 ); 87 87 88 return (bool) add_post_meta( $post_id, self::SYNC_UPDATE_META_KEY, $envelope, false );88 return (bool) add_post_meta( $post_id, , false ); 89 89 } 90 90 … … 163 163 164 164 // update_post_meta returns false if the value is the same as the existing value. 165 update_post_meta( $post_id, self::AWARENESS_META_KEY, $awareness);165 update_post_meta( $post_id, ); 166 166 return true; 167 167 } … … 306 306 307 307 // Remove all updates for the room and re-store only those that are newer than the cursor. 308 if ( ! delete_post_meta( $post_id, self::SYNC_UPDATE_META_KEY) ) {308 if ( ! delete_post_meta( $post_id, ) ) { 309 309 return false; 310 310 }
Note: See TracChangeset
for help on using the changeset viewer.