diff --git a/src/wp-admin/includes/template.php b/src/wp-admin/includes/template.php index 6680bca89691a..bd5039df59c3f 100644 --- a/src/wp-admin/includes/template.php +++ b/src/wp-admin/includes/template.php @@ -589,8 +589,8 @@ function list_meta( $meta ) {
| ' . _x( 'Name', 'meta name' ) . ' | -' . __( 'Value' ) . ' | +' . esc_html_x( 'Name', 'meta name' ) . ' | +' . esc_html__( 'Value' ) . ' |
|---|
| - | + | + | ||
|---|---|---|---|---|
| '; + echo ' | '; } else { - echo ' | ' . $field['title'] . ' | '; + echo '' . esc_html( $field['title'] ) . ' | '; } echo '';
@@ -2015,7 +2015,7 @@ function settings_errors( $setting = '', $sanitize = false, $hide_on_update = fa
);
$output .= " \n";
- $output .= " \n";
}
@@ -2139,7 +2139,7 @@ function iframe_header( $title = '', $deprecated = false ) {
header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) );
_wp_admin_html_begin();
?>
-{$details['message']} "; + $output .= '' . wp_kses_post( $details['message'] ) . ' '; $output .= " |