Changeset 58975 for trunk/src/wp-admin/includes/plugin.php
- Timestamp:
- 09/03/2024 06:17:19 PM (6 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin.php
r58419 r58975 2611 2611 if ( false === $blog_deactivated_plugins ) { 2612 2612 // Option not in database, add an empty array to avoid extra DB queries on subsequent loads. 2613 update_option( 'wp_force_deactivated_plugins', array() );2613 update_option( 'wp_force_deactivated_plugins', array(), false ); 2614 2614 } 2615 2615 … … 2665 2665 2666 2666 // Empty the options. 2667 update_option( 'wp_force_deactivated_plugins', array() );2667 update_option( 'wp_force_deactivated_plugins', array(), false ); 2668 2668 if ( is_multisite() ) { 2669 2669 update_site_option( 'wp_force_deactivated_plugins', array() );
Note: See TracChangeset
for help on using the changeset viewer.