Changeset 53270
- Timestamp:
- 04/26/2022 11:23:59 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-gd.php
r52978 r53270 538 538 * 539 539 * @param string $filename 540 * @param callable $ function540 * @param callable $callback 541 541 * @param array $arguments 542 542 * @return bool 543 543 */ 544 protected function make_image( $filename, $ function, $arguments ) {544 protected function make_image( $filename, $callback, $arguments ) { 545 545 if ( wp_is_stream( $filename ) ) { 546 546 $arguments[1] = null; 547 547 } 548 548 549 return parent::make_image( $filename, $ function, $arguments );549 return parent::make_image( $filename, $callback, $arguments ); 550 550 } 551 551 }
Note: See TracChangeset
for help on using the changeset viewer.