Changes between Initial Version and Version 1 of Ticket #24067, comment 142
- Timestamp:
- 03/25/2014 02:21:11 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24067, comment 142
initial v1 15 15 a) returning NULL to the tiny_mce_plugins filter 16 16 b) set the $plugins var (line 342 of class-wp-editor.php) to be NULL 17 18 UPDATE: 19 20 Nevermind my previous comments here. My external plugin is now working fine because it was actually due to a problem with my code and an if statement I copied from the newly updated wpgallery plugin: 21 22 23 // 'wpview' handles the gallery shortcode when present 24 if ( ! editor.plugins.wpview ) { 25 26 That was restricting my plugin from actually running its functions (Though I'm still not sure why returning NULL to the $plugins array fixed it). 27 28 Anyway. Disregard and all appears to be working as it should. Thanks.