Ticket #44044: 44044.diff
File 44044.diff, 771 bytes (added by , 7 years ago) |
---|
-
src/wp-admin/includes/file.php
1958 1958 * @return string The HTML for this group and its items. 1959 1959 */ 1960 1960 function wp_privacy_generate_personal_data_export_group_html( $group_data ) { 1961 $allowed_tags = array( 1962 'a' => array( 1963 'href' => array(), 1964 'target' => array() 1965 ), 1966 'br' => array() 1967 ); 1968 $allowed_protocols = array( 'http', 'https' ); 1961 $allowed_tags = wp_kses_allowed_html( 'personal_data_export' ); 1962 $allowed_protocols = wp_allowed_protocols(); 1969 1963 $group_html = ''; 1970 1964 1971 1965 $group_html .= '<h2>' . esc_html( $group_data['group_label'] ) . '</h2>';