Changeset 22303
- Timestamp:
- 10/25/2012 08:38:55 PM (12 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp.php
r22283 r22303 383 383 384 384 if ( isset( $headers['Last-Modified'] ) && empty( $headers['Last-Modified'] ) && function_exists( 'header_remove' ) ) 385 header_remove( 'Last-Modified' );385 @header_remove( 'Last-Modified' ); 386 386 387 387 if ( $exit_required ) -
trunk/wp-includes/functions.php
r22283 r22303 928 928 @header("{$name}: {$field_value}"); 929 929 if ( empty( $headers['Last-Modified'] ) && function_exists( 'header_remove' ) ) 930 header_remove( 'Last-Modified' );930 @header_remove( 'Last-Modified' ); 931 931 } 932 932
Note: See TracChangeset
for help on using the changeset viewer.