Changeset 50271 for trunk/src/wp-includes/class-wp.php
- Timestamp:
- 02/09/2021 04:55:29 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp.php
r49946 r50271 406 406 $headers = array_merge( $headers, wp_get_nocache_headers() ); 407 407 } elseif ( ! empty( $_GET['unapproved'] ) && ! empty( $_GET['moderation-hash'] ) ) { 408 // Unmoderated comments are only visible for one minute via the moderation hash. 409 $headers['Expires'] = gmdate( 'D, d M Y H:i:s', time() + MINUTE_IN_SECONDS ); 410 $headers['Cache-Control'] = 'max-age=60, must-revalidate'; 408 // Unmoderated comments are only visible for 10 minutes via the moderation hash. 409 $expires = 10 * MINUTE_IN_SECONDS; 410 411 $headers['Expires'] = gmdate( 'D, d M Y H:i:s', time() + $expires ); 412 $headers['Cache-Control'] = sprintf( 413 'max-age=%d, must-revalidate', 414 $expires 415 ); 411 416 } 412 417 if ( ! empty( $this->query_vars['error'] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.