Ticket #26553: 26553.patch
| File 26553.patch, 1.8 KB (added by , 11 years ago) |
|---|
-
comment-template.php
1271 1271 */ 1272 1272 echo apply_filters( 'comments_popup_link_attributes', $attributes ); 1273 1273 1274 echo ' title="' . esc_attr( sprintf( __('Comment on %s'), $title ) ) . '">';1274 echo '>'; 1275 1275 comments_number( $zero, $one, $more ); 1276 1276 echo '</a>'; 1277 1277 } … … 2104 2104 /** This filter is documented in wp-includes/link-template.php */ 2105 2105 'must_log_in' => '<p class="must-log-in">' . sprintf( __( 'You must be <a href="%s">logged in</a> to post a comment.' ), wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '</p>', 2106 2106 /** This filter is documented in wp-includes/link-template.php */ 2107 '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>',2107 'logged_in_as' => '<p class="logged-in-as">' . sprintf( __( 'Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s">Log out?</a>' ), get_edit_user_link(), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '</p>', 2108 2108 'comment_notes_before' => '<p class="comment-notes">' . __( 'Your email address will not be published.' ) . ( $req ? $required_text : '' ) . '</p>', 2109 2109 'comment_notes_after' => '<p class="form-allowed-tags">' . sprintf( __( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: %s' ), ' <code>' . allowed_tags() . '</code>' ) . '</p>', 2110 2110 'id_form' => 'commentform',