Return comment even if blank.

git-svn-id: https://develop.svn.wordpress.org/trunk@2144 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-01-24 10:13:28 +00:00
parent e78ceee3fc
commit fe2075356a

View File

@ -168,6 +168,10 @@ function comment_author_link() {
function get_comment_type() {
global $comment;
if ( '' == $comment->comment_type )
$comment->comment_type = 'comment';
return apply_filters('get_comment_type', $comment->comment_type);
}