Make WordPress Core


Ignore:
Timestamp:
04/26/2024 03:00:03 PM (19 months ago)
Author:
adamsilverstein
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-avif-info.php

    r57524 r58049  
    176176          continue;
    177177        }
    178         $status = get_item_features( $tile->tile_item_id, $tile_depth + 1 );
     178        $status = $this->get_item_features( $tile->tile_item_id, $tile_depth + 1 );
    179179        if ( $status != NOT_FOUND ) {
    180180          return $status;
Note: See TracChangeset for help on using the changeset viewer.