From d0e5cc140996ecaf157cb46c4cda9786ea91cd8a Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 15 May 2009 22:33:33 +0000 Subject: [PATCH] Use get_post_modified_time filter in get_post_modified_time(). Props Denis-de-Bernardy. fixes #9734 git-svn-id: http://svn.automattic.com/wordpress/trunk@11347 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index eebe536e1..f02fc6e50 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -1342,7 +1342,7 @@ function get_post_modified_time( $d = 'U', $gmt = false, $post = null, $translat $time = $post->post_modified; $time = mysql2date($d, $time, $translate); - return apply_filters('get_the_modified_time', $time, $d, $gmt); + return apply_filters('get_post_modified_time', $time, $d, $gmt); } /**