Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #39883


Ignore:
Timestamp:
02/15/2017 07:58:14 PM (8 years ago)
Author:
stephdau
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #39883 – Description

    initial v1  
    1 In r38949, Core  pretty drastically changed the expectations that any code hooking onto the `image_downsize` filter could make until now, potentially leading to issues for integrators.
     1In r38949, Core  pretty drastically changed the expectations that any code hooking onto the `image_downsize` filter could make until then, potentially leading to issues for integrators.
    22
    33We went from having the `image_downsize()` function immediately return `false` if a file wasn't an image, not getting to that filter application at all, to only setting a variable with the result of the `wp_attachment_is_image( $id )` test and now applying the filter (not even passing said result, for that matter).