Ticket #31353: image-edit2.php.patch
File image-edit2.php.patch, 700 bytes (added by , 10 years ago) |
---|
-
wp-admin/includes/image-edit.php
7 7 */ 8 8 9 9 /** 10 * The WordPress image editor function 11 * 10 12 * @param int $post_id 11 13 * @param bool|object $msg 12 14 */ … … 330 332 } 331 333 } 332 334 335 /** 336 * Image preview ratio. Not Public. 337 * 338 * @param $w Width 339 * @param $h Height 340 * 341 * @return float|int 342 */ 333 343 function _image_get_preview_ratio($w, $h) { 334 344 $max = max($w, $h); 335 345 return $max > 400 ? (400 / $max) : 1; … … 561 571 } 562 572 563 573 /** 574 * Restore Image 575 * 564 576 * @param int $post_id 565 577 * @return stdClass 566 578 */