From 815e31f611c020c18c020fc1f92891eeda55a208 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 5 Aug 2021 13:15:55 +0000 Subject: [PATCH] Coding Standards: Remove redundant semicolons after closing curly brackets. Props jrf. See #53359. Built from https://develop.svn.wordpress.org/trunk@51552 git-svn-id: http://core.svn.wordpress.org/trunk@51163 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 7bee3b397a..83310c3a6e 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -3265,7 +3265,7 @@ function wp_init_targeted_link_rel_filters() { foreach ( $filters as $filter ) { add_filter( $filter, 'wp_targeted_link_rel' ); - }; + } } /** @@ -3288,7 +3288,7 @@ function wp_remove_targeted_link_rel_filters() { foreach ( $filters as $filter ) { remove_filter( $filter, 'wp_targeted_link_rel' ); - }; + } } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index e82fff5493..25e9898b7e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51551'; +$wp_version = '5.9-alpha-51552'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.