diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php
index d6a138d..46d1f53 100644
a
|
b
|
function comment_form( $args = array(), $post_id = null ) { |
2265 | 2265 | |
2266 | 2266 | comment_form_title( $args['title_reply'], $args['title_reply_to'] ); |
2267 | 2267 | |
2268 | | echo $args['cancel_reply_before']; |
| 2268 | if ( get_option('thread_comments') ) { |
| 2269 | echo $args[ 'cancel_reply_before' ]; |
2269 | 2270 | |
2270 | | cancel_comment_reply_link( $args['cancel_reply_link'] ); |
| 2271 | cancel_comment_reply_link( $args[ 'cancel_reply_link' ] ); |
2271 | 2272 | |
2272 | | echo $args['cancel_reply_after']; |
| 2273 | echo $args[ 'cancel_reply_after' ]; |
| 2274 | } |
2273 | 2275 | |
2274 | 2276 | echo $args['title_reply_after']; |
2275 | 2277 | |