Version Description
- Fix issue in version 0.6
Download this release
Release Info
Developer | Otto42 |
Plugin | Hotfix |
Version | 0.7 |
Comparing to | |
See all releases |
Code changes from version 0.6 to 0.7
- hotfix.php +2 -2
- readme.txt +6 -3
hotfix.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Hotfix
|
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.
|
6 |
Author: Mark Jaquith
|
7 |
Author URI: http://coveredwebservices.com/
|
8 |
*/
|
@@ -97,7 +97,7 @@ if ( ! function_exists( 'json_decode' ) && ! function_exists( '_json_decode_obje
|
|
97 |
global $wp_hotfix_json;
|
98 |
|
99 |
if ( ! is_a( $wp_hotfix_json, 'Services_JSON' ) ) {
|
100 |
-
require_once( dirname( __FILE__ ) . '/inc/class-json.php' )
|
101 |
$wp_hotfix_json = new Services_JSON();
|
102 |
}
|
103 |
|
2 |
/*
|
3 |
Plugin Name: Hotfix
|
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.7
|
6 |
Author: Mark Jaquith
|
7 |
Author URI: http://coveredwebservices.com/
|
8 |
*/
|
97 |
global $wp_hotfix_json;
|
98 |
|
99 |
if ( ! is_a( $wp_hotfix_json, 'Services_JSON' ) ) {
|
100 |
+
require_once( dirname( __FILE__ ) . '/inc/class-json.php' );
|
101 |
$wp_hotfix_json = new Services_JSON();
|
102 |
}
|
103 |
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: markjaquith
|
3 |
Tags: hotfix, bugs, wordpress, update
|
4 |
Requires at least: 3.0
|
5 |
-
Tested up to: 3.1
|
6 |
-
Stable tag: 0.
|
7 |
|
8 |
Provides unofficial fixes for selected WordPress bugs, so you don't have to wait for the next WordPress core release.
|
9 |
|
@@ -40,6 +40,9 @@ Fixes are specific to your version of WordPress. It may be that your version of
|
|
40 |
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 |
|
42 |
== Changelog ==
|
|
|
|
|
|
|
43 |
= 0.6 =
|
44 |
* Include JSON support for people with funky PHP setups.
|
45 |
|
@@ -62,7 +65,7 @@ Read the "Complete Hotfix List" section in the description. A later version of t
|
|
62 |
* Hotfix for WP 3.0.5 comment text KSES overzealousness.
|
63 |
|
64 |
== Upgrade Notice ==
|
65 |
-
= 0.
|
66 |
Upgrade if you're getting JSON-related errors.
|
67 |
|
68 |
= 0.5 =
|
2 |
Contributors: markjaquith
|
3 |
Tags: hotfix, bugs, wordpress, update
|
4 |
Requires at least: 3.0
|
5 |
+
Tested up to: 3.2.1
|
6 |
+
Stable tag: 0.7
|
7 |
|
8 |
Provides unofficial fixes for selected WordPress bugs, so you don't have to wait for the next WordPress core release.
|
9 |
|
40 |
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 |
|
42 |
== Changelog ==
|
43 |
+
= 0.7 =
|
44 |
+
* Fix issue in version 0.6
|
45 |
+
|
46 |
= 0.6 =
|
47 |
* Include JSON support for people with funky PHP setups.
|
48 |
|
65 |
* Hotfix for WP 3.0.5 comment text KSES overzealousness.
|
66 |
|
67 |
== Upgrade Notice ==
|
68 |
+
= 0.7 =
|
69 |
Upgrade if you're getting JSON-related errors.
|
70 |
|
71 |
= 0.5 =
|