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:
parent
8d919b09d4
commit
d309715a95
|
@ -6838,6 +6838,7 @@ function wp_privacy_anonymize_data( $type, $data = '' ) {
|
|||
break;
|
||||
default:
|
||||
$anonymous = '';
|
||||
break;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue