From 5a47302c359c2370591a6ab3e95b426143b26d88 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 22 Aug 2019 14:49:05 +0000 Subject: [PATCH] Coding Standards: Add missing `break` for the default case in `wp_privacy_anonymize_data()`. Props itowhid06. Fixes #47921. git-svn-id: https://develop.svn.wordpress.org/trunk@45877 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 857d16fd60..3b61fcd5ff 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -6838,6 +6838,7 @@ function wp_privacy_anonymize_data( $type, $data = '' ) { break; default: $anonymous = ''; + break; } /**