Commit 38214e40aa for wordpress.org

commit 38214e40aac86f04f24ebd144633aafb537371b1
Author: Weston Ruter <weston@xwp.co>
Date:   Fri Dec 5 05:50:32 2025 +0000

    Plugins: Restore line break between the filter links row and the plugin cards in the Featured view.

    Follow-up to [60528].

    Props mukesh27, sajib1223, TobiasBg, narenin, sabernhardt, westonruter.
    See #63723.
    Fixes #64337.

    Built from https://develop.svn.wordpress.org/trunk@61353


    git-svn-id: http://core.svn.wordpress.org/trunk@60665 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-admin/includes/plugin-install.php b/wp-admin/includes/plugin-install.php
index 7e5a04c0a0..9925c26bb3 100644
--- a/wp-admin/includes/plugin-install.php
+++ b/wp-admin/includes/plugin-install.php
@@ -399,6 +399,7 @@ function display_plugins_table() {
 			);
 			break;
 		case 'install_plugins_featured':
+			echo '<br>';
 			break;
 		case 'install_plugins_recommended':
 			echo '<p>' . __( 'These suggestions are based on the plugins you and other users have installed.' ) . '</p>';
@@ -409,9 +410,6 @@ function display_plugins_table() {
 			}
 			break;
 	}
-	if ( isset( $_GET['tab'] ) && 'featured' === $_GET['tab'] ) {
-		echo '<br />';
-	}
 	?>
 	<form id="plugin-filter" method="post">
 		<?php $wp_list_table->display(); ?>
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 1541b3f4c2..0bad573714 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61352';
+$wp_version = '7.0-alpha-61353';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.