698 | | if ( $wp_rewrite->using_permalinks() ) |
699 | | $link = user_trailingslashit( trailingslashit( get_permalink( $comment->comment_post_ID ) ) . $wp_rewrite->comments_pagination_base . '-' . $args['page'], 'comment' ); |
700 | | else |
| 698 | if ( $wp_rewrite->using_permalinks() ) { |
| 699 | $link = trailingslashit( get_permalink( $comment->comment_post_ID ) ); |
| 700 | if ( 1 < $args['page'] ) { |
| 701 | $link .= $wp_rewrite->comments_pagination_base . '-' . $args['page']; |
| 702 | } |
| 703 | $link = user_trailingslashit( $link, 'comment' ); |
| 704 | } else { |