Make WordPress Core


Ignore:
Timestamp:
06/06/2020 09:58:55 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Comments: Ensure that unmoderated comments won't be search indexed.

After a comment is submitted, only allow a brief window where the comment is live on the site.

Props jonkolbert, ayeshrajans, Asif2BD, peterwilsoncc, imath, audrasjb, jonoaldersonwp, whyisjake, SergeyBiryukov.
Merges [47887] and [47889] to the 5.2 branch.
See #49956.

Location:
branches/5.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.2

  • branches/5.2/src/wp-includes/comment.php

    r44972 r47917  
    18091809
    18101810        if ( $comment && hash_equals( $_GET['moderation-hash'], wp_hash( $comment->comment_date_gmt ) ) ) {
    1811             $commenter_email = $comment->comment_author_email;
     1811            // The comment will only be viewable by the comment author for 1 minute.
     1812            $comment_preview_expires = strtotime( $comment->comment_date_gmt . '+1 minute' );
     1813
     1814            if ( time() < $comment_preview_expires ) {
     1815                $commenter_email = $comment->comment_author_email;
     1816            }
    18121817        }
    18131818    }
Note: See TracChangeset for help on using the changeset viewer.