Changeset 47918
- Timestamp:
- 06/06/2020 10:07:01 AM (4 years ago)
- Location:
- branches/5.1
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.1
- Property svn:mergeinfo changed
/trunk merged: 47887,47889
- Property svn:mergeinfo changed
-
branches/5.1/src/wp-comments-post.php
r44659 r47918 57 57 $location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID; 58 58 59 // Add specific query arguments to display the awaiting moderation message.60 if ( 'unapproved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_author_email ) ) {59 // If user didn't consent to cookies, add specific query arguments to display the awaiting moderation message. 60 if ( ! $cookies_consent && 'unapproved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_author_email ) ) { 61 61 $location = add_query_arg( 62 62 array( -
branches/5.1/src/wp-includes/class-walker-comment.php
r44681 r47918 182 182 } 183 183 184 if ( ( 'pingback' == $comment->comment_type || 'trackback' == $comment->comment_type ) && $args['short_ping'] ) { 184 if ( 'comment' === $comment->comment_type ) { 185 add_filter( 'comment_text', array( $this, 'filter_comment_text' ), 40, 2 ); 186 } 187 188 if ( ( 'pingback' === $comment->comment_type || 'trackback' === $comment->comment_type ) && $args['short_ping'] ) { 185 189 ob_start(); 186 190 $this->ping( $comment, $depth, $args ); … … 195 199 $output .= ob_get_clean(); 196 200 } 201 202 if ( 'comment' === $comment->comment_type ) { 203 remove_filter( 'comment_text', array( $this, 'filter_comment_text' ), 40, 2 ); 204 } 197 205 } 198 206 … … 246 254 247 255 /** 256 * Filters the comment text. 257 * 258 * Removes links from the pending comment's text if the commenter did not consent 259 * to the comment cookies. 260 * 261 * @since 5.4.2 262 * 263 * @param string $comment_text Text of the current comment. 264 * @param WP_Comment|null $comment The comment object. Null if not found. 265 * @return string Filtered text of the current comment. 266 */ 267 public function filter_comment_text( $comment_text, $comment ) { 268 $commenter = wp_get_current_commenter(); 269 $show_pending_links = ! empty( $commenter['comment_author'] ); 270 271 if ( $comment && '0' == $comment->comment_approved && ! $show_pending_links ) { 272 $comment_text = wp_kses( $comment_text, array() ); 273 } 274 275 return $comment_text; 276 } 277 278 /** 248 279 * Outputs a single comment. 249 280 * … … 265 296 } 266 297 267 $commenter = wp_get_current_commenter(); 298 $commenter = wp_get_current_commenter(); 299 $show_pending_links = isset( $commenter['comment_author'] ) && $commenter['comment_author']; 300 268 301 if ( $commenter['comment_author_email'] ) { 269 302 $moderation_note = __( 'Your comment is awaiting moderation.' ); … … 271 304 $moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.' ); 272 305 } 273 274 306 ?> 275 307 <<?php echo $tag; ?> <?php comment_class( $this->has_children ? 'parent' : '', $comment ); ?> id="comment-<?php comment_ID(); ?>"> … … 280 312 <?php 281 313 if ( 0 != $args['avatar_size'] ) { 282 echo get_avatar( $comment, $args['avatar_size'] );} 314 echo get_avatar( $comment, $args['avatar_size'] ); 315 } 283 316 ?> 284 317 <?php 285 /* translators: %s: comment author link */ 286 printf( 287 __( '%s <span class="says">says:</span>' ), 288 sprintf( '<cite class="fn">%s</cite>', get_comment_author_link( $comment ) ) 289 ); 318 $comment_author = get_comment_author_link( $comment ); 319 320 if ( '0' == $comment->comment_approved && ! $show_pending_links ) { 321 $comment_author = get_comment_author( $comment ); 322 } 323 324 printf( 325 /* translators: %s: Comment author link. */ 326 __( '%s <span class="says">says:</span>' ), 327 sprintf( '<cite class="fn">%s</cite>', $comment_author ) 328 ); 290 329 ?> 291 330 </div> … … 355 394 $tag = ( 'div' === $args['style'] ) ? 'div' : 'li'; 356 395 357 $commenter = wp_get_current_commenter(); 396 $commenter = wp_get_current_commenter(); 397 $show_pending_links = ! empty( $commenter['comment_author'] ); 398 358 399 if ( $commenter['comment_author_email'] ) { 359 400 $moderation_note = __( 'Your comment is awaiting moderation.' ); … … 361 402 $moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.' ); 362 403 } 363 364 404 ?> 365 405 <<?php echo $tag; ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( $this->has_children ? 'parent' : '', $comment ); ?>> … … 369 409 <?php 370 410 if ( 0 != $args['avatar_size'] ) { 371 echo get_avatar( $comment, $args['avatar_size'] );} 411 echo get_avatar( $comment, $args['avatar_size'] ); 412 } 372 413 ?> 373 414 <?php 374 /* translators: %s: comment author link */ 375 printf( 376 __( '%s <span class="says">says:</span>' ), 377 sprintf( '<b class="fn">%s</b>', get_comment_author_link( $comment ) ) 378 ); 415 $comment_author = get_comment_author_link( $comment ); 416 417 if ( '0' == $comment->comment_approved && ! $show_pending_links ) { 418 $comment_author = get_comment_author( $comment ); 419 } 420 421 printf( 422 /* translators: %s: Comment author link. */ 423 __( '%s <span class="says">says:</span>' ), 424 sprintf( '<b class="fn">%s</b>', $comment_author ) 425 ); 379 426 ?> 380 427 </div><!-- .comment-author --> … … 402 449 403 450 <?php 404 comment_reply_link( 405 array_merge( 406 $args, 407 array( 408 'add_below' => 'div-comment', 409 'depth' => $depth, 410 'max_depth' => $args['max_depth'], 411 'before' => '<div class="reply">', 412 'after' => '</div>', 451 if ( '1' == $comment->comment_approved || $show_pending_links ) { 452 comment_reply_link( 453 array_merge( 454 $args, 455 array( 456 'add_below' => 'div-comment', 457 'depth' => $depth, 458 'max_depth' => $args['max_depth'], 459 'before' => '<div class="reply">', 460 'after' => '</div>', 461 ) 413 462 ) 414 ) 415 );463 ); 464 } 416 465 ?> 417 466 </article><!-- .comment-body --> -
branches/5.1/src/wp-includes/class-wp-comment-query.php
r44573 r47918 528 528 if ( is_numeric( $unapproved_identifier ) ) { 529 529 $approved_clauses[] = $wpdb->prepare( "( user_id = %d AND comment_approved = '0' )", $unapproved_identifier ); 530 530 } else { 531 531 // Otherwise we match against email addresses. 532 } else { 533 $approved_clauses[] = $wpdb->prepare( "( comment_author_email = %s AND comment_approved = '0' )", $unapproved_identifier ); 532 if ( ! empty( $_GET['unapproved'] ) && ! empty( $_GET['moderation-hash'] ) ) { 533 // Only include requested comment. 534 $approved_clauses[] = $wpdb->prepare( "( comment_author_email = %s AND comment_approved = '0' AND comment_ID = %d )", $unapproved_identifier, (int) $_GET['unapproved'] ); 535 } else { 536 // Include all of the author's unapproved comments. 537 $approved_clauses[] = $wpdb->prepare( "( comment_author_email = %s AND comment_approved = '0' )", $unapproved_identifier ); 538 } 534 539 } 535 540 } -
branches/5.1/src/wp-includes/class-wp.php
r46490 r47918 404 404 if ( is_user_logged_in() ) { 405 405 $headers = array_merge( $headers, wp_get_nocache_headers() ); 406 } elseif ( ! empty( $_GET['unapproved'] ) && ! empty( $_GET['moderation-hash'] ) ) { 407 // Unmoderated comments are only visible for one minute via the moderation hash. 408 $headers['Expires'] = gmdate( 'D, d M Y H:i:s', time() + MINUTE_IN_SECONDS ); 409 $headers['Cache-Control'] = 'max-age=60, must-revalidate'; 406 410 } 407 411 if ( ! empty( $this->query_vars['error'] ) ) { -
branches/5.1/src/wp-includes/comment-template.php
r44659 r47918 1000 1000 * 1001 1001 * @param string $comment_text Text of the current comment. 1002 * @param WP_Comment|null $comment The comment object. 1002 * @param WP_Comment|null $comment The comment object. Null if not found. 1003 1003 * @param array $args An array of arguments. 1004 1004 */ -
branches/5.1/src/wp-includes/comment.php
r44843 r47918 1786 1786 1787 1787 if ( $comment && hash_equals( $_GET['moderation-hash'], wp_hash( $comment->comment_date_gmt ) ) ) { 1788 $commenter_email = $comment->comment_author_email; 1788 // The comment will only be viewable by the comment author for 1 minute. 1789 $comment_preview_expires = strtotime( $comment->comment_date_gmt . '+1 minute' ); 1790 1791 if ( time() < $comment_preview_expires ) { 1792 $commenter_email = $comment->comment_author_email; 1793 } 1789 1794 } 1790 1795 }
Note: See TracChangeset
for help on using the changeset viewer.