Ticket #23797: 23797.3.diff
File 23797.3.diff, 1.7 KB (added by , 9 years ago) |
---|
-
src/wp-includes/comment-template.php
2257 2257 '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>', 2258 2258 'comment_notes_before' => '<p class="comment-notes"><span id="email-notes">' . __( 'Your email address will not be published.' ) . '</span>'. ( $req ? $required_text : '' ) . '</p>', 2259 2259 'comment_notes_after' => '', 2260 'comment_reply_title' => '<h3 id="reply-title" class="comment-reply-title">%1$s <small>%2%s</small></h3>', 2260 2261 'id_form' => 'commentform', 2261 2262 'id_submit' => 'submit', 2262 2263 'class_submit' => 'submit', … … 2294 2295 do_action( 'comment_form_before' ); 2295 2296 ?> 2296 2297 <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() ) : ?> 2299 2303 <?php echo $args['must_log_in']; ?> 2300 2304 <?php 2301 2305 /**