Changeset 47916 for branches/5.3/src/wp-includes/comment.php
- Timestamp:
- 06/06/2020 09:51:22 AM (5 years ago)
- Location:
- branches/5.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.3
- Property svn:mergeinfo changed
/trunk merged: 47887,47889
- Property svn:mergeinfo changed
-
branches/5.3/src/wp-includes/comment.php
r46427 r47916 1832 1832 1833 1833 if ( $comment && hash_equals( $_GET['moderation-hash'], wp_hash( $comment->comment_date_gmt ) ) ) { 1834 $commenter_email = $comment->comment_author_email; 1834 // The comment will only be viewable by the comment author for 1 minute. 1835 $comment_preview_expires = strtotime( $comment->comment_date_gmt . '+1 minute' ); 1836 1837 if ( time() < $comment_preview_expires ) { 1838 $commenter_email = $comment->comment_author_email; 1839 } 1835 1840 } 1836 1841 }
Note: See TracChangeset
for help on using the changeset viewer.