Changeset 54265
- Timestamp:
- 09/20/2022 04:57:15 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor.php
r54226 r54265 513 513 case 2: 514 514 // Flip horizontally. 515 $result = $this->flip( true, false );515 $result = $this->flip( false, true ); 516 516 break; 517 517 case 3: … … 522 522 case 4: 523 523 // Flip vertically. 524 $result = $this->flip( false, true );524 $result = $this->flip( true, false ); 525 525 break; 526 526 case 5: … … 529 529 530 530 if ( ! is_wp_error( $result ) ) { 531 $result = $this->flip( false, true );531 $result = $this->flip( true, false ); 532 532 } 533 533 … … 542 542 543 543 if ( ! is_wp_error( $result ) ) { 544 $result = $this->flip( true, false );544 $result = $this->flip( false, true ); 545 545 } 546 546
Note: See TracChangeset
for help on using the changeset viewer.