Changeset 46421 for trunk/src/wp-admin/includes/image.php
- Timestamp:
- 10/07/2019 03:28:29 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/image.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/image.php
r46398 r46421 253 253 } 254 254 255 // Set a custom header with the attachment_id.256 // Used by the browser/client to resume creating image sub-sizes after a PHP fatal error.257 if ( ! headers_sent() ) {258 header( 'X-WP-Upload-Attachment-ID: ' . $attachment_id );259 }260 261 255 // Resize the image 262 256 $resized = $editor->resize( $threshold, $threshold ); … … 297 291 // This image cannot be edited. 298 292 return $image_meta; 299 }300 301 if ( ! headers_sent() ) {302 header( 'X-WP-Upload-Attachment-ID: ' . $attachment_id );303 293 } 304 294 … … 400 390 // The image cannot be edited. 401 391 return $image_meta; 402 }403 404 // Set a custom header with the attachment_id.405 // Used by the browser/client to resume creating image sub-sizes after a PHP fatal error.406 if ( ! headers_sent() ) {407 header( 'X-WP-Upload-Attachment-ID: ' . $attachment_id );408 392 } 409 393
Note: See TracChangeset
for help on using the changeset viewer.