Ticket #30261: 30261.4.diff
File 30261.4.diff, 534 bytes (added by , 9 years ago) |
---|
-
src/wp-includes/taxonomy.php
diff --git src/wp-includes/taxonomy.php src/wp-includes/taxonomy.php index c2d0acc..2afa998 100644
function _split_shared_term( $term_id, $term_taxonomy_id, $record = true ) { 4251 4251 4252 4252 // Don't try to split terms if database schema does not support shared slugs. 4253 4253 $current_db_version = get_option( 'db_version' ); 4254 if ( $current_db_version < 30133 ) {4254 if ( $current_db_version < 30133 && ! defined( 'WP_INSTALLING' ) ) { 4255 4255 return $term_id; 4256 4256 } 4257 4257