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:
audrasjb 2025-01-29 21:54:23 +00:00
parent 6376a8f6f7
commit 34458b5bca
2 changed files with 1 additions and 5 deletions

View File

@ -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'] );

View File

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