From d309715a95e518f0c85486c1889c9726e2dbc34c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 22 Aug 2019 14:50:55 +0000 Subject: [PATCH] Coding Standards: Add missing `break` for the default case in `wp_privacy_anonymize_data()`. Props itowhid06. Fixes #47921. Built from https://develop.svn.wordpress.org/trunk@45877 git-svn-id: http://core.svn.wordpress.org/trunk@45688 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 1 + wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 857d16fd60..3b61fcd5ff 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -6838,6 +6838,7 @@ function wp_privacy_anonymize_data( $type, $data = '' ) { break; default: $anonymous = ''; + break; } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index b514151b5c..23510c0a3c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45876'; +$wp_version = '5.3-alpha-45877'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.