Changeset 41217
- Timestamp:
- 08/03/2017 02:58:26 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r41127 r41217 2221 2221 /* translators: %s: login URL */ 2222 2222 __( 'You must be <a href="%s">logged in</a> to post a comment.' ), 2223 wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) )2223 wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) ) 2224 2224 ) . '</p>', 2225 2225 /** This filter is documented in wp-includes/link-template.php */ … … 2231 2231 esc_attr( sprintf( __( 'Logged in as %s. Edit your profile.' ), $user_identity ) ), 2232 2232 $user_identity, 2233 wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) )2233 wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) ) 2234 2234 ) . '</p>', 2235 2235 'comment_notes_before' => '<p class="comment-notes"><span id="email-notes">' . __( 'Your email address will not be published.' ) . '</span>'. ( $req ? $required_text : '' ) . '</p>',
Note: See TracChangeset
for help on using the changeset viewer.