App Passwords: Store the "in use" option in the main network options.
Whether App Passwords are being used is a global featurel, not a per-network feature. This fixes issues on Multi Network installs if App Passwords are used on a different network from where they were created. Props spacedmonkey. Fixes #51939. See [49752]. Built from https://develop.svn.wordpress.org/trunk@49764 git-svn-id: http://core.svn.wordpress.org/trunk@49487 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
29e882c177
commit
efdba220e6
|
@ -2288,7 +2288,8 @@ function upgrade_560() {
|
||||||
);
|
);
|
||||||
|
|
||||||
if ( ! empty( $results ) ) {
|
if ( ! empty( $results ) ) {
|
||||||
update_site_option( WP_Application_Passwords::OPTION_KEY_IN_USE, 1 );
|
$network_id = get_main_network_id();
|
||||||
|
update_network_option( $network_id, WP_Application_Passwords::OPTION_KEY_IN_USE, 1 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,8 @@ class WP_Application_Passwords {
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public static function is_in_use() {
|
public static function is_in_use() {
|
||||||
return (bool) get_site_option( self::OPTION_KEY_IN_USE );
|
$network_id = get_main_network_id();
|
||||||
|
return (bool) get_network_option( $network_id, self::OPTION_KEY_IN_USE );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -89,8 +90,9 @@ class WP_Application_Passwords {
|
||||||
return new WP_Error( 'db_error', __( 'Could not save application password.' ) );
|
return new WP_Error( 'db_error', __( 'Could not save application password.' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! get_site_option( self::OPTION_KEY_IN_USE ) ) {
|
$network_id = get_main_network_id();
|
||||||
update_site_option( self::OPTION_KEY_IN_USE, true );
|
if ( ! get_network_option( $network_id, self::OPTION_KEY_IN_USE ) ) {
|
||||||
|
update_network_option( $network_id, self::OPTION_KEY_IN_USE, true );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.7-alpha-49763';
|
$wp_version = '5.7-alpha-49764';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue