From 1cd07a318a33d2907b7d03c764e8361bedc56743 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 8 Mar 2024 14:34:11 +0000 Subject: [PATCH] Plugins: Remove extra space in a translatable string. Follow-up to [57545]. Props Presskopp. Fixes #60730. Built from https://develop.svn.wordpress.org/trunk@57791 git-svn-id: http://core.svn.wordpress.org/trunk@57292 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-plugin-dependencies.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-plugin-dependencies.php b/wp-includes/class-wp-plugin-dependencies.php index 77444f33d1..3f64e59c9a 100644 --- a/wp-includes/class-wp-plugin-dependencies.php +++ b/wp-includes/class-wp-plugin-dependencies.php @@ -426,7 +426,7 @@ class WP_Plugin_Dependencies { wp_admin_notice( sprintf( '

%1$s

%3$s

', - __( 'These plugins cannot be activated because their requirements are invalid. ' ), + __( 'These plugins cannot be activated because their requirements are invalid.' ), $circular_dependency_lines, __( 'Please contact the plugin authors for more information.' ) ), diff --git a/wp-includes/version.php b/wp-includes/version.php index d705527d49..0f5a4ae062 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-57790'; +$wp_version = '6.6-alpha-57791'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.