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
This commit is contained in:
Sergey Biryukov 2019-08-22 14:50:55 +00:00
parent 8d919b09d4
commit d309715a95
2 changed files with 2 additions and 1 deletions

View File

@ -6838,6 +6838,7 @@ function wp_privacy_anonymize_data( $type, $data = '' ) {
break;
default:
$anonymous = '';
break;
}
/**

View File

@ -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.