Plugin Directory

Changeset 2436048


Ignore:
Timestamp:
12/10/2020 12:40:53 AM (5 years ago)
Author:
theMikeD
Message:

v2.0.1 release

Location:
term-management-tools
Files:
1 added
4 edited
5 copied

Legend:

Unmodified
Added
Removed
  • term-management-tools/tags/2.0.1/classes/class-WPML.php

    r2431741 r2436048  
    197197        foreach ( $terms_to_relink as $term_to_relink ) {
    198198            $translation_record = $this->get_translation_record( (int) $term_to_relink );
    199             if ( isset( $translation_record->source_language_code ) ) {
     199            if ( isset( $translation_record ) ) {
    200200                // We have a translation
    201201                $set_translation_args = array(
  • term-management-tools/tags/2.0.1/readme.txt

    r2431741 r2436048  
    44Requires at least: 4.2
    55Tested up to: 5.6
    6 Stable tag: 2.0.0
     6Stable tag: 2.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7070== Changelog ==
    7171
     72= 2.0.1 =
     73* FIX: a WPML translation that only exists in a single site non-primary language was not being migrated correctly
     74
    7275= 2.0.0 =
    7376* under new management by @theMikeD :)
  • term-management-tools/tags/2.0.1/term-management-tools.php

    r2431741 r2436048  
    22/*
    33Plugin Name: Term Management Tools
    4 Version: 2.0.0
     4Version: 2.0.1
    55Description: Allows you to merge terms, move terms between taxonomies, and set term parents, individually or in bulk. The "Change Taxonomy" option supports WPML-translated terms.
    66Author: theMikeD, scribu
  • term-management-tools/trunk/classes/class-WPML.php

    r2431741 r2436048  
    197197        foreach ( $terms_to_relink as $term_to_relink ) {
    198198            $translation_record = $this->get_translation_record( (int) $term_to_relink );
    199             if ( isset( $translation_record->source_language_code ) ) {
     199            if ( isset( $translation_record ) ) {
    200200                // We have a translation
    201201                $set_translation_args = array(
  • term-management-tools/trunk/readme.txt

    r2431741 r2436048  
    44Requires at least: 4.2
    55Tested up to: 5.6
    6 Stable tag: 2.0.0
     6Stable tag: 2.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7070== Changelog ==
    7171
     72= 2.0.1 =
     73* FIX: a WPML translation that only exists in a single site non-primary language was not being migrated correctly
     74
    7275= 2.0.0 =
    7376* under new management by @theMikeD :)
  • term-management-tools/trunk/term-management-tools.php

    r2431741 r2436048  
    22/*
    33Plugin Name: Term Management Tools
    4 Version: 2.0.0
     4Version: 2.0.1
    55Description: Allows you to merge terms, move terms between taxonomies, and set term parents, individually or in bulk. The "Change Taxonomy" option supports WPML-translated terms.
    66Author: theMikeD, scribu
Note: See TracChangeset for help on using the changeset viewer.