Make WordPress Core

Ticket #23797: 23797.3.diff

File 23797.3.diff, 1.7 KB (added by MikeHansenMe, 9 years ago)
  • src/wp-includes/comment-template.php

     
    22572257                'logged_in_as'         => '<p class="logged-in-as">' . sprintf( __( 'Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s" title="Log out of this account">Log out?</a>' ), get_edit_user_link(), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '</p>',
    22582258                'comment_notes_before' => '<p class="comment-notes"><span id="email-notes">' . __( 'Your email address will not be published.' ) . '</span>'. ( $req ? $required_text : '' ) . '</p>',
    22592259                'comment_notes_after'  => '',
     2260                'comment_reply_title' => '<h3 id="reply-title" class="comment-reply-title">%1$s <small>%2%s</small></h3>',
    22602261                'id_form'              => 'commentform',
    22612262                'id_submit'            => 'submit',
    22622263                'class_submit'         => 'submit',
     
    22942295                        do_action( 'comment_form_before' );
    22952296                        ?>
    22962297                        <div id="respond" class="comment-respond">
    2297                                 <h3 id="reply-title" class="comment-reply-title"><?php comment_form_title( $args['title_reply'], $args['title_reply_to'] ); ?> <small><?php cancel_comment_reply_link( $args['cancel_reply_link'] ); ?></small></h3>
    2298                                 <?php if ( get_option( 'comment_registration' ) && !is_user_logged_in() ) : ?>
     2298                                <?php printf( $args['comment_reply_title'],
     2299                                comment_form_title( $args['title_reply'],
     2300                                $args['title_reply_to'] ),
     2301                                cancel_comment_reply_link( $args['cancel_reply_link'] );
     2302                                if ( get_option( 'comment_registration' ) && !is_user_logged_in() ) : ?>
    22992303                                        <?php echo $args['must_log_in']; ?>
    23002304                                        <?php
    23012305                                        /**