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
1 changed files with 2 additions and 2 deletions

View File

@ -599,12 +599,12 @@ function comment_text() {
*/
function get_comment_time( $d = '', $gmt = false, $translate = true ) {
global $comment;
$comment_date = $gmt? $comment->comment_date_gmt : $comment->comment_date;
$comment_date = $gmt ? $comment->comment_date_gmt : $comment->comment_date;
if ( '' == $d )
$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);
}
/**