Skip to content

Commit 7cec785

Browse files
committed
Bump DB version number to next commit.
1 parent d6e59f7 commit 7cec785

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/wp-includes/collaboration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* If the WP_ALLOW_COLLABORATION constant is false,
1313
* collaboration is always disabled regardless of the database option.
1414
* Otherwise, the feature requires both the 'wp_collaboration_enabled'
15-
* option and the database schema introduced in db_version 61841.
15+
* option and the database schema introduced in db_version 62282.
1616
*
1717
* @since 7.0.0
1818
*
@@ -22,7 +22,7 @@ function wp_is_collaboration_enabled(): bool {
2222
return (
2323
wp_is_collaboration_allowed() &&
2424
get_option( 'wp_collaboration_enabled' ) &&
25-
get_option( 'db_version' ) >= 61841
25+
get_option( 'db_version' ) >= 62282
2626
);
2727
}
2828

src/wp-includes/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* @global int $wp_db_version
2525
*/
26-
$wp_db_version = 61844;
26+
$wp_db_version = 62282;
2727

2828
/**
2929
* Holds the TinyMCE version.

0 commit comments

Comments
 (0)