Plugin Directory

Changeset 2080643


Ignore:
Timestamp:
05/04/2019 10:13:28 PM (7 years ago)
Author:
softmodeling
Message:

Version 1.1.1 of the plugin

Location:
serious-duplicated-terms/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • serious-duplicated-terms/trunk/README.txt

    r2080637 r2080643  
    5858== Changelog ==
    5959
     60= 1.1.1 =
     61* Cleaned error messages
     62
    6063= 1.1 =
    6164* Added option to signal as duplicates only terms with the same exact name
  • serious-duplicated-terms/trunk/admin/class-serious-duplicated-terms-admin-ext.php

    r2080637 r2080643  
    136136
    137137    public function manage_duplicates() {
    138         error_log('---- Managing duplicates ---');
     138
    139139        global $wpdb;
    140140        foreach($_POST as $key=>$post_data) {
    141 
    142             //echo "You posted:" . $key . " = " . $post_data . "<br>";
    143             //get the term_taxonomy_id for the terms
    144             error_log(print_r($key ,true));
    145             if($key!='action' && $key!='submit') {
     141            if($key!='));action' && $key!='submit') {
    146142                $term_keep   = get_term( substr($key,4), '', OBJECT );
    147143                $term_remove = get_term( $post_data, '', OBJECT );
  • serious-duplicated-terms/trunk/serious-duplicated-terms.php

    r2080640 r2080643  
    1717 * Plugin URI:        https://wordpress.org/plugins/serious-duplicated-terms
    1818 * Description:       Finding and merging quasi-duplicated terms
    19  * Version:           1.1.0
     19 * Version:           1.1.1
    2020 * Author:            Jordi Cabot
    2121 * Author URI:        https://seriouswsp.com
     
    4545 * Rename this for your plugin and update it as you release new versions.
    4646 */
    47 define( 'SERIOUS_DUPLICATED_TERMS', '1.0.0' );
     47define( 'SERIOUS_DUPLICATED_TERMS', '1.1.1' );
    4848
    4949/**
Note: See TracChangeset for help on using the changeset viewer.