Commit df7a24c97c for wordpress.org
commit df7a24c97c0fcc6e63219b5a6cd4a1f936569c2f
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date: Sat Nov 22 23:25:33 2025 +0000
Help/About: Use `<strong>` tags instead of double quotes in Media Library help text.
This aims to make the styling of button references more consistent across the help tabs.
Follow-up to [61277].
Props Guido07111975.
Fixes #64289.
Built from https://develop.svn.wordpress.org/trunk@61279
git-svn-id: http://core.svn.wordpress.org/trunk@60591 1a063a9b-81f0-0310-95a4-ce76da25c4cd
diff --git a/wp-admin/upload.php b/wp-admin/upload.php
index daa37353ac..7043dc279c 100644
--- a/wp-admin/upload.php
+++ b/wp-admin/upload.php
@@ -180,7 +180,7 @@ if ( 'grid' === $mode ) {
'content' =>
'<p>' . __( 'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.' ) . '</p>' .
'<p>' . __( 'You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.' ) . '</p>' .
- '<p>' . __( 'To delete media items, click the “Bulk select” button at the top of the screen. Select any items you wish to delete, then click the “Delete permanently” button. Clicking the “Cancel” button takes you back to viewing your media.' ) . '</p>',
+ '<p>' . __( 'To delete media items, click the <strong>Bulk select</strong> button at the top of the screen. Select any items you wish to delete, then click the <strong>Delete permanently</strong> button. Clicking the <strong>Cancel</strong> button takes you back to viewing your media.' ) . '</p>',
)
);
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 6f151835fb..f8ea1c1984 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
-$wp_version = '7.0-alpha-61278';
+$wp_version = '7.0-alpha-61279';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.