From e328484e66562be1189a1fa551f5a9011063a06e Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Tue, 16 Dec 2014 14:19:22 +0000 Subject: [PATCH] Twenty Fifteen: Remove unnecessary `esc_html()` from `get_the_date()` and `get_the_modified_date()`. see #30724. Built from https://develop.svn.wordpress.org/trunk@30905 git-svn-id: http://core.svn.wordpress.org/trunk@30895 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfifteen/inc/template-tags.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentyfifteen/inc/template-tags.php b/wp-content/themes/twentyfifteen/inc/template-tags.php index 59f8cabd56..0a617c098f 100644 --- a/wp-content/themes/twentyfifteen/inc/template-tags.php +++ b/wp-content/themes/twentyfifteen/inc/template-tags.php @@ -67,9 +67,9 @@ function twentyfifteen_entry_meta() { $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), - esc_html( get_the_date() ), + get_the_date(), esc_attr( get_the_modified_date( 'c' ) ), - esc_html( get_the_modified_date() ) + get_the_modified_date() ); printf( '%1$s %3$s',