diff --git wp-includes/comment-template.php wp-includes/comment-template.php
index 41031cb..a0e058d 100755
|
|
function comment_id_fields( $id = 0 ) { |
1923 | 1923 | * |
1924 | 1924 | * @global WP_Comment $comment Current comment. |
1925 | 1925 | * |
1926 | | * @param string $noreplytext Optional. Text to display when not replying to a comment. |
1927 | | * Default false. |
1928 | | * @param string $replytext Optional. Text to display when replying to a comment. |
1929 | | * Default false. Accepts "%s" for the author of the comment |
1930 | | * being replied to. |
1931 | | * @param string $linktoparent Optional. Boolean to control making the author's name a link |
1932 | | * to their comment. Default true. |
| 1926 | * @param false|string $noreplytext Optional. Text to display when not replying to a comment. |
| 1927 | * Default false. |
| 1928 | * @param false|string $replytext Optional. Text to display when replying to a comment. |
| 1929 | * Default false. Accepts "%s" for the author of the comment |
| 1930 | * being replied to. |
| 1931 | * @param true|string $linktoparent Optional. Boolean to control making the author's name a link |
| 1932 | * to their comment. Default true. |
1933 | 1933 | */ |
1934 | 1934 | function comment_form_title( $noreplytext = false, $replytext = false, $linktoparent = true ) { |
1935 | 1935 | global $comment; |