From 4fefdf54986e4685a817144167bf4b627c37b449 Mon Sep 17 00:00:00 2001 From: Ryan Boren 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: https://develop.svn.wordpress.org/trunk@11347 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 eebe536e14..f02fc6e507 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); } /**