mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-01 03:04:34 +00:00
Coding Standards: Fix instances of WordPress.PHP.NoSilencedErrors.Discouraged.
Noteable changes: - The `magic_quotes_runtime` and `magic_quotes_sybase` settings were removed in PHP 5.4, so no longer need to be set. - Some functions that use external libraries can generate errors that can't be tested for, so are globally allowed to silence errors. - Quite a few functions would cause errors if `safe_mode` was set. This setting was removed in PHP 5.4. - Only a handful of `header()` calls needed corresponding `headers_sent()` checks for unit tests to pass, but more may need to be added as the nightlies builds are tested. See #46732. git-svn-id: https://develop.svn.wordpress.org/trunk@45611 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -492,23 +492,15 @@ class WP {
|
||||
if ( isset( $headers['Last-Modified'] ) && false === $headers['Last-Modified'] ) {
|
||||
unset( $headers['Last-Modified'] );
|
||||
|
||||
// In PHP 5.3+, make sure we are not sending a Last-Modified header.
|
||||
if ( function_exists( 'header_remove' ) ) {
|
||||
@header_remove( 'Last-Modified' );
|
||||
} else {
|
||||
// In PHP 5.2, send an empty Last-Modified header, but only as a
|
||||
// last resort to override a header already sent. #WP23021
|
||||
foreach ( headers_list() as $header ) {
|
||||
if ( 0 === stripos( $header, 'Last-Modified' ) ) {
|
||||
$headers['Last-Modified'] = '';
|
||||
break;
|
||||
}
|
||||
}
|
||||
if ( ! headers_sent() ) {
|
||||
header_remove( 'Last-Modified' );
|
||||
}
|
||||
}
|
||||
|
||||
foreach ( (array) $headers as $name => $field_value ) {
|
||||
@header( "{$name}: {$field_value}" );
|
||||
if ( ! headers_sent() ) {
|
||||
foreach ( (array) $headers as $name => $field_value ) {
|
||||
header( "{$name}: {$field_value}" );
|
||||
}
|
||||
}
|
||||
|
||||
if ( $exit_required ) {
|
||||
@@ -674,8 +666,8 @@ class WP {
|
||||
}
|
||||
|
||||
// Only set X-Pingback for single posts that allow pings.
|
||||
if ( $p && pings_open( $p ) ) {
|
||||
@header( 'X-Pingback: ' . get_bloginfo( 'pingback_url', 'display' ) );
|
||||
if ( $p && pings_open( $p ) && ! headers_sent() ) {
|
||||
header( 'X-Pingback: ' . get_bloginfo( 'pingback_url', 'display' ) );
|
||||
}
|
||||
|
||||
// check for paged content that exceeds the max number of pages
|
||||
|
||||
Reference in New Issue
Block a user