Ticket #19524: hotfix-patch.diff
| File hotfix-patch.diff, 3.0 KB (added by markjaquith, 18 months ago) |
|---|
-
hotfix.php
2 2 /* 3 3 Plugin Name: Hotfix 4 4 Description: Provides "hotfixes" for selected WordPress bugs, so you don't have to wait for the next WordPress core release. Keep the plugin updated! 5 Version: 0. 65 Version: 0.8 6 6 Author: Mark Jaquith 7 7 Author URI: http://coveredwebservices.com/ 8 8 */ … … 34 34 $hotfixes = array(); 35 35 36 36 switch ( $wp_version ) { 37 case '3.3' : 38 if ( !defined( 'CONCATENATE_SCRIPTS' ) ) 39 define( 'CONCATENATE_SCRIPTS', false ); 40 break; 37 41 case '3.1.3' : 38 42 $hotfixes = array( '313_post_status_query_string' ); 39 43 break; -
readme.txt
1 1 === Hotfix === 2 Contributors: markjaquith 2 Contributors: markjaquith, nacin 3 3 Tags: hotfix, bugs, wordpress, update 4 4 Requires at least: 3.0 5 Tested up to: 3. 2.15 Tested up to: 3.3 6 6 Stable tag: 0.7 7 7 8 8 Provides unofficial fixes for selected WordPress bugs, so you don't have to wait for the next WordPress core release. … … 12 12 This unofficial plugin provides fixes for selected WordPress bugs, so you don't have to wait for the next WordPress core release. **This does not mean you can stop updating WordPress!** It just means that you'll get a few selected fixes more quickly. 13 13 14 14 Recent fixes: 15 * **WordPress 3.3** 16 * Work around a bug for people without built-in JSON support 15 17 16 18 * **WordPress 3.2** 17 19 * Include JSON support for people with funky PHP setups 18 20 19 * **WordPress 3.1.3**20 * Fix a bug that caused `post_status` to malfunction if passed an array21 22 * **WordPress 3.1**23 * Fix a bug that caused some taxonomy query manipulations (like excluding categories) to not work like they did before.24 25 * **WordPress 3.0.5**26 * Prevent KSES from overzealously stripping images and other advanced HTML from Administrator/Editor comments on display.27 28 21 Fixes are specific to your version of WordPress. It may be that your version of WordPress has no fixes. That's fine. Keep the plugin activated and updated, in case you need it for a subsequent version of WordPress! 29 22 30 23 == Installation == … … 40 33 Read the "Complete Hotfix List" section in the description. A later version of the plugin may list the hotfixes in a special WordPress admin page. 41 34 42 35 == Changelog == 36 = 0.8 = 37 * Include JSON support for script-loader.php 43 38 = 0.7 = 44 39 * Fix issue in version 0.6 45 40 … … 65 60 * Hotfix for WP 3.0.5 comment text KSES overzealousness. 66 61 67 62 == Upgrade Notice == 63 = 0.8 = 64 Upgrade if you are having JavaScript issues in the WordPress Dashboard. 65 68 66 = 0.7 = 69 67 Upgrade if you're getting JSON-related errors. 70 68 … … 82 80 83 81 == Complete Hotfix List == 84 82 83 * **WordPress 3.3** 84 * Work around a bug for people without built-in JSON support 85 85 86 * **WordPress 3.2** 86 87 * Include JSON support for people with funky PHP setups 87 88
