We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ce6546 commit b097d00Copy full SHA for b097d00
1 file changed
src/wp-includes/collaboration/class-wp-sync-post-meta-storage.php
@@ -25,12 +25,12 @@ class WP_Sync_Post_Meta_Storage implements WP_Sync_Storage {
25
const POST_TYPE = 'wp_sync_storage';
26
27
/**
28
- * Meta key for awareness state.
+ * Transient prefix for awareness state.
29
*
30
* @since 7.0.0
31
* @var string
32
*/
33
- const AWARENESS_META_KEY = 'wp_sync_awareness';
+ const AWARENESS_TRANSIENT_PREFIX = 'wp_sync_awareness';
34
35
36
* Meta key for sync updates.
@@ -124,7 +124,7 @@ static function ( $update ): bool {
124
}
125
126
public function get_awareness_cache_key( $post_id ) {
127
- return self::AWARENESS_META_KEY . '_' . $post_id;
+ return self::AWARENESS_TRANSIENT_PREFIX . '_' . $post_id;
128
129
130
0 commit comments