Taxonomy Metadata - Version 0.4

Version Description

  • Fixed an issue with creating new sites on multisite
Download this release

Release Info

Developer mitchoyoshitaka
Plugin Icon wp plugin Taxonomy Metadata
Version 0.4
Comparing to
See all releases

Code changes from version 0.3 to 0.4

Files changed (2) hide show
  1. readme.txt +5 -2
  2. taxonomy-metadata.php +2 -3
readme.txt CHANGED
@@ -6,8 +6,8 @@ Plugin URI: http://mitcho.com/code/
6
  Donate link: http://tinyurl.com/donatetomitcho
7
  Tags: infrastructure, taxonomy, metadata, API
8
  Requires at least: 3.0
9
- Tested up to: 3.6
10
- Stable tag: 0.3
11
 
12
  Infrastructure plugin which implements metadata functionality for taxonomy terms, including for tags and categories.
13
 
@@ -51,6 +51,9 @@ Development of this plugin was supported by the [Massachusetts Institute of Tech
51
 
52
  == Changelog ==
53
 
 
 
 
54
  = 0.3 =
55
  * Better Network Activation handling:
56
  * install necessary tables for each blog on Network Activate
6
  Donate link: http://tinyurl.com/donatetomitcho
7
  Tags: infrastructure, taxonomy, metadata, API
8
  Requires at least: 3.0
9
+ Tested up to: 3.8
10
+ Stable tag: 0.4
11
 
12
  Infrastructure plugin which implements metadata functionality for taxonomy terms, including for tags and categories.
13
 
51
 
52
  == Changelog ==
53
 
54
+ = 0.4 =
55
+ * Fixed an issue with [creating new sites on multisite](http://wordpress.org/support/topic/php-warning-when-creating-a-new-site-multisite)
56
+
57
  = 0.3 =
58
  * Better Network Activation handling:
59
  * install necessary tables for each blog on Network Activate
taxonomy-metadata.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Taxonomy Metadata
4
  Description: Infrastructure plugin which implements metadata functionality for taxonomy terms, including for tags and categories.
5
- Version: 0.3
6
  Author: mitcho (Michael Yoshitaka Erlewine), sirzooro
7
  Author URI: http://mitcho.com/
8
  */
@@ -11,8 +11,7 @@ class Taxonomy_Metadata {
11
  function __construct() {
12
  add_action( 'init', array($this, 'wpdbfix') );
13
  add_action( 'switch_blog', array($this, 'wpdbfix') );
14
-
15
- add_action('wpmu_new_blog', 'new_blog', 10, 6);
16
  }
17
 
18
  /*
2
  /*
3
  Plugin Name: Taxonomy Metadata
4
  Description: Infrastructure plugin which implements metadata functionality for taxonomy terms, including for tags and categories.
5
+ Version: 0.4
6
  Author: mitcho (Michael Yoshitaka Erlewine), sirzooro
7
  Author URI: http://mitcho.com/
8
  */
11
  function __construct() {
12
  add_action( 'init', array($this, 'wpdbfix') );
13
  add_action( 'switch_blog', array($this, 'wpdbfix') );
14
+ add_action('wpmu_new_blog', array($this, 'new_blog'), 10, 6);
 
15
  }
16
 
17
  /*