--- a/wp/wp-admin/includes/class-wp-plugins-list-table.php Fri Sep 05 18:40:08 2025 +0200
+++ b/wp/wp-admin/includes/class-wp-plugins-list-table.php Fri Sep 05 18:52:52 2025 +0200
@@ -194,7 +194,7 @@
if ( $screen->in_admin( 'network' ) ) {
update_site_option( 'recently_activated', $recently_activated );
} else {
- update_option( 'recently_activated', $recently_activated );
+ update_option( 'recently_activated', $recently_activated, false );
}
$plugin_info = get_site_transient( 'update_plugins' );
@@ -694,6 +694,10 @@
}
/**
+ * Generates the list table rows.
+ *
+ * @since 3.1.0
+ *
* @global string $status
*/
public function display_rows() {
@@ -1594,7 +1598,7 @@
}
printf(
- '<div class="requires"><p>%1$s</p><p>%2$s</p></div>',
+ '<div class="requires"><p>%1$s</p>%2$s</div>',
$requires,
$notice
);