Media: fix potential error in class-avif-info.php::get_item_features().
Import upstream fix from libavifinfo, correcting a potential fatal error. Props yguyon. Fixes #60980. Built from https://develop.svn.wordpress.org/trunk@58049 git-svn-id: http://core.svn.wordpress.org/trunk@57514 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4aa1d98bd1
commit
93978139f0
|
@ -175,7 +175,7 @@ class Features {
|
||||||
if ( $tile->parent_item_id != $target_item_id ) {
|
if ( $tile->parent_item_id != $target_item_id ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$status = get_item_features( $tile->tile_item_id, $tile_depth + 1 );
|
$status = $this->get_item_features( $tile->tile_item_id, $tile_depth + 1 );
|
||||||
if ( $status != NOT_FOUND ) {
|
if ( $status != NOT_FOUND ) {
|
||||||
return $status;
|
return $status;
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.6-alpha-58048';
|
$wp_version = '6.6-alpha-58049';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue