Changeset 61637 for trunk/src/wp-includes/functions.php
- Timestamp:
- 02/13/2026 05:51:41 PM (4 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r61464 r61637 952 952 $headers = wp_get_http_headers( $url ); 953 953 if ( $headers ) { 954 $len = isset( $headers['Content-Length'] ) ? (int) $headers['Content-Length'] : 0;954 $len = (int) ( $headers['Content-Length'] ?? 0 ); 955 955 $type = $headers['Content-Type'] ?? ''; 956 956 $allowed_types = array( 'video', 'audio' );
Note: See TracChangeset
for help on using the changeset viewer.