Changeset 53271
- Timestamp:
- 04/26/2022 11:29:49 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor.php
r52573 r53271 550 550 * 551 551 * @param string $filename 552 * @param callable $ function552 * @param callable $callback 553 553 * @param array $arguments 554 554 * @return bool 555 555 */ 556 protected function make_image( $filename, $ function, $arguments ) {556 protected function make_image( $filename, $callback, $arguments ) { 557 557 $stream = wp_is_stream( $filename ); 558 558 if ( $stream ) { … … 563 563 } 564 564 565 $result = call_user_func_array( $ function, $arguments );565 $result = call_user_func_array( $callback, $arguments ); 566 566 567 567 if ( $result && $stream ) {
Note: See TracChangeset
for help on using the changeset viewer.