mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-12 10:31:34 +01:00
Coding standards: Remove unused variables from privacy_policy_guide()
function.
See #62279. Built from https://develop.svn.wordpress.org/trunk@59733 git-svn-id: http://core.svn.wordpress.org/trunk@59075 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6376a8f6f7
commit
34458b5bca
@ -378,7 +378,6 @@ final class WP_Privacy_Policy_Content {
|
||||
public static function privacy_policy_guide() {
|
||||
|
||||
$content_array = self::get_suggested_policy_text();
|
||||
$content = '';
|
||||
$date_format = __( 'F j, Y' );
|
||||
|
||||
$i = 0;
|
||||
@ -386,10 +385,7 @@ final class WP_Privacy_Policy_Content {
|
||||
foreach ( $content_array as $section ) {
|
||||
++$i;
|
||||
|
||||
$class = '';
|
||||
$meta = '';
|
||||
$removed = '';
|
||||
|
||||
if ( ! empty( $section['removed'] ) ) {
|
||||
$badge_class = ' red';
|
||||
$date = date_i18n( $date_format, $section['removed'] );
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.8-alpha-59732';
|
||||
$wp_version = '6.8-alpha-59733';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user