Changeset 50271 for trunk/src/wp-includes/comment.php
- Timestamp:
- 02/09/2021 04:55:29 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r50112 r50271 1923 1923 * 1924 1924 * @since 5.1.0 1925 * @since 5.7.0 The window within which the author email for an unapproved comment 1926 * can be retrieved was extended to 10 minutes. 1925 1927 * 1926 1928 * @return string The unapproved comment author's email (when supplied). … … 1934 1936 1935 1937 if ( $comment && hash_equals( $_GET['moderation-hash'], wp_hash( $comment->comment_date_gmt ) ) ) { 1936 // The comment will only be viewable by the comment author for 1 minute.1937 $comment_preview_expires = strtotime( $comment->comment_date_gmt . '+1 minute' );1938 // The comment will only be viewable by the comment author for 10 minutes. 1939 $comment_preview_expires = strtotime( $comment->comment_date_gmt . '+10 minutes' ); 1938 1940 1939 1941 if ( time() < $comment_preview_expires ) {
Note: See TracChangeset
for help on using the changeset viewer.