id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,focuses 22380,Consolidate the API hooks comment,momo360modena,westi,"Many functions of API comments have hooks unusable because they do not provide parameters that provides the function. In general, these functions provides a $comment_ID argument, but it's not present in the hook... Sample {{{ function comment_author( $comment_ID = 0 ) { $author = apply_filters('comment_author', get_comment_author( $comment_ID ) ); echo $author; } }}} Fixed sample : {{{ function comment_author( $comment_ID = 0 ) { $author = apply_filters('comment_author', get_comment_author( $comment_ID ), $comment_ID ); echo $author; } }}} ",enhancement,closed,normal,4.1,Comments,3.4,minor,fixed,has-patch needs-refresh good-first-bug,,