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:
parent
e78ceee3fc
commit
fe2075356a
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user