Changeset 2080643
- Timestamp:
- 05/04/2019 10:13:28 PM (7 years ago)
- Location:
- serious-duplicated-terms/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
admin/class-serious-duplicated-terms-admin-ext.php (modified) (1 diff)
-
serious-duplicated-terms.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
serious-duplicated-terms/trunk/README.txt
r2080637 r2080643 58 58 == Changelog == 59 59 60 = 1.1.1 = 61 * Cleaned error messages 62 60 63 = 1.1 = 61 64 * 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 136 136 137 137 public function manage_duplicates() { 138 error_log('---- Managing duplicates ---'); 138 139 139 global $wpdb; 140 140 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') { 146 142 $term_keep = get_term( substr($key,4), '', OBJECT ); 147 143 $term_remove = get_term( $post_data, '', OBJECT ); -
serious-duplicated-terms/trunk/serious-duplicated-terms.php
r2080640 r2080643 17 17 * Plugin URI: https://wordpress.org/plugins/serious-duplicated-terms 18 18 * Description: Finding and merging quasi-duplicated terms 19 * Version: 1.1. 019 * Version: 1.1.1 20 20 * Author: Jordi Cabot 21 21 * Author URI: https://seriouswsp.com … … 45 45 * Rename this for your plugin and update it as you release new versions. 46 46 */ 47 define( 'SERIOUS_DUPLICATED_TERMS', '1. 0.0' );47 define( 'SERIOUS_DUPLICATED_TERMS', '1.1.1' ); 48 48 49 49 /**
Note: See TracChangeset
for help on using the changeset viewer.