diff -r 48c4eec2b7e6 -r 8c2e4d02f4ef wp/wp-admin/includes/plugin.php --- a/wp/wp-admin/includes/plugin.php Fri Sep 05 18:40:08 2025 +0200 +++ b/wp/wp-admin/includes/plugin.php Fri Sep 05 18:52:52 2025 +0200 @@ -2610,7 +2610,7 @@ if ( false === $blog_deactivated_plugins ) { // Option not in database, add an empty array to avoid extra DB queries on subsequent loads. - update_option( 'wp_force_deactivated_plugins', array() ); + update_option( 'wp_force_deactivated_plugins', array(), false ); } if ( is_multisite() ) { @@ -2664,7 +2664,7 @@ } // Empty the options. - update_option( 'wp_force_deactivated_plugins', array() ); + update_option( 'wp_force_deactivated_plugins', array(), false ); if ( is_multisite() ) { update_site_option( 'wp_force_deactivated_plugins', array() ); }