Add another arg to 'get_comment_time' filter, props miqrogroove, fixes #11421

git-svn-id: http://svn.automattic.com/wordpress/trunk@12396 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-12-14 10:21:58 +00:00
parent c1e0bd72af
commit 72990cd094

View File

@ -604,7 +604,7 @@ function get_comment_time( $d = '', $gmt = false, $translate = true ) {
$date = mysql2date(get_option('time_format'), $comment_date, $translate);
else
$date = mysql2date($d, $comment_date, $translate);
return apply_filters('get_comment_time', $date, $d, $gmt);
return apply_filters('get_comment_time', $date, $d, $gmt, $translate);
}
/**