Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #33055, comment 51


Ignore:
Timestamp:
06/07/2016 08:24:38 PM (9 years ago)
Author:
mnelson4
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33055, comment 51

    initial v1  
    33+1. This change isn't exactly 100% backwards compatible so it might be good to bring this more to the community's attention.
    44
    5 This just broke our plugin's paypal integration because we had an `is_array($response)` check (which just needs to be changed to `is_array($response) || $response instanceof ArrayAccess`). Glad we caught this before 4.6 got released, hopefully we can push a fix to our plugins and have all our users update before they update WP core to 4.6 because then it will break for them on live too.
     5This just broke our plugin's paypal integration because we had an `array_key_exists( 'body', $response)` check (which just needs to be changed to `isset( $response[ 'body' ] )`). Glad we caught this before 4.6 got released, hopefully we can push a fix to our plugins and have all our users update before they update WP core to 4.6 because then it will break for them on live too.