Make WordPress Core

Ticket #14261: 14261(bug).diff

File 14261(bug).diff, 481 bytes (added by wojtek.szkutnik, 14 years ago)
  • comment-template.php

     
    614614 * @param int $comment_ID The ID of the comment for which to print the text. Optional.
    615615 */
    616616function comment_text( $comment_ID = 0 ) {
    617         echo apply_filters('comment_text', get_comment_text() );
     617        echo apply_filters('comment_text', get_comment_text( $comment_ID ) );
    618618}
    619619
    620620/**