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
This commit is contained in:
ryan 2009-05-15 22:33:33 +00:00
parent 909978dfaa
commit d0e5cc1409
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/**