Changes between Initial Version and Version 1 of Ticket #36335, comment 63
- Timestamp:
- 08/25/2016 07:00:06 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36335, comment 63
initial v1 1 1 Replying to [comment:61 jorbin]: 2 2 > 1) Removing the instantiation of things like `$GLOBALS['wp_press_this'] = new WP_Press_This(); ` from the original file is a breaking change. 3 That instantiation was executed at the point where the `require` was made. To avoid a breaking change, we just need to add the instantiation so shecovers all of the scenarios that would have triggered the `require`.3 That instantiation was executed at the point where the `require` was made. To avoid a breaking change, we just need to add the instantiation so it covers all of the scenarios that would have triggered the `require`. 4 4 5 5 > 3) I apply the patch, and now development doesn't work right away. All I get is `Autoloader was not found, aborting.` That can't be committed.