From 490b4a3a6c0d3a7ea57e8d00e800984e82c40f4a Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Wed, 29 Jan 2025 21:33:09 +0000 Subject: [PATCH] Privacy: Replace Policy Name with an auto increment to avoid internationalized plugin name issues. This changeset replaces plugin sanitized names with an auto increment integer to fix an issue with accordions displaying privacy policies for plugins with special characters in their names. Follow-up to [50161]. Props ecgan, sabernhardt, audrasjb. Fixes #62713. git-svn-id: https://develop.svn.wordpress.org/trunk@59732 602fd350-edb4-49c9-b593-d223f7449a82 --- .../includes/class-wp-privacy-policy-content.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/wp-admin/includes/class-wp-privacy-policy-content.php b/src/wp-admin/includes/class-wp-privacy-policy-content.php index 724a0dcf64..78669c7351 100644 --- a/src/wp-admin/includes/class-wp-privacy-policy-content.php +++ b/src/wp-admin/includes/class-wp-privacy-policy-content.php @@ -381,7 +381,11 @@ final class WP_Privacy_Policy_Content { $content = ''; $date_format = __( 'F j, Y' ); + $i = 0; + foreach ( $content_array as $section ) { + ++$i; + $class = ''; $meta = ''; $removed = ''; @@ -409,11 +413,9 @@ final class WP_Privacy_Policy_Content { } $plugin_name = esc_html( $section['plugin_name'] ); - - $sanitized_policy_name = sanitize_title_with_dashes( $plugin_name ); ?>

-

-