Media: Replace some array keys with their numeric equivalent.
This change replaces `['0']` with `[0]` which brings better consistency, readability and performance. Props chintan1896, adamsilverstein, costdev. Fixes #53540. Built from https://develop.svn.wordpress.org/trunk@52245 git-svn-id: http://core.svn.wordpress.org/trunk@51837 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
95f823d933
commit
f69b6a04fb
|
@ -3740,17 +3740,17 @@ function wp_get_media_creation_timestamp( $metadata ) {
|
|||
|
||||
case 'matroska':
|
||||
case 'webm':
|
||||
if ( isset( $metadata['matroska']['comments']['creation_time']['0'] ) ) {
|
||||
$creation_date = strtotime( $metadata['matroska']['comments']['creation_time']['0'] );
|
||||
} elseif ( isset( $metadata['matroska']['info']['0']['DateUTC_unix'] ) ) {
|
||||
$creation_date = (int) $metadata['matroska']['info']['0']['DateUTC_unix'];
|
||||
if ( isset( $metadata['matroska']['comments']['creation_time'][0] ) ) {
|
||||
$creation_date = strtotime( $metadata['matroska']['comments']['creation_time'][0] );
|
||||
} elseif ( isset( $metadata['matroska']['info'][0]['DateUTC_unix'] ) ) {
|
||||
$creation_date = (int) $metadata['matroska']['info'][0]['DateUTC_unix'];
|
||||
}
|
||||
break;
|
||||
|
||||
case 'quicktime':
|
||||
case 'mp4':
|
||||
if ( isset( $metadata['quicktime']['moov']['subatoms']['0']['creation_time_unix'] ) ) {
|
||||
$creation_date = (int) $metadata['quicktime']['moov']['subatoms']['0']['creation_time_unix'];
|
||||
if ( isset( $metadata['quicktime']['moov']['subatoms'][0]['creation_time_unix'] ) ) {
|
||||
$creation_date = (int) $metadata['quicktime']['moov']['subatoms'][0]['creation_time_unix'];
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -1129,7 +1129,7 @@ function wp_get_attachment_image( $attachment_id, $size = 'thumbnail', $icon = f
|
|||
*/
|
||||
function wp_get_attachment_image_url( $attachment_id, $size = 'thumbnail', $icon = false ) {
|
||||
$image = wp_get_attachment_image_src( $attachment_id, $size, $icon );
|
||||
return isset( $image['0'] ) ? $image['0'] : false;
|
||||
return isset( $image[0] ) ? $image[0] : false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-alpha-52244';
|
||||
$wp_version = '5.9-alpha-52245';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue