Make WordPress Core

Ticket #32031: 32031.diff

File 32031.diff, 837 bytes (added by dipesh.kakadiya, 11 years ago)

Updated typo

  • src/wp-includes/taxonomy.php

     
    29282928                                }
    29292929
    29302930                                if ( $existing_term ) {
    2931                                         return new WP_Error( 'term_exists', __( 'A term with the name already exists with this parent.' ), $existing_term->term_id );
     2931                                        return new WP_Error( 'term_exists', __( 'A term with the name provided already exists with this parent.' ), $existing_term->term_id );
    29322932                                }
    29332933                        } else {
    2934                                 return new WP_Error( 'term_exists', __( 'A term with the name already exists in this taxonomy.' ), $name_match->term_id );
     2934                                return new WP_Error( 'term_exists', __( 'A term with the name provided already exists in this taxonomy.' ), $name_match->term_id );
    29352935                        }
    29362936                }
    29372937        }