Make WordPress Core

Ticket #52144: 52144.diff

File 52144.diff, 509 bytes (added by akabarikalpesh, 4 years ago)
  • src/wp-includes/post.php

     
    73447344                        $terms = get_object_term_cache( $post->ID, $taxonomy );
    73457345                        if ( false !== $terms ) {
    73467346                                foreach ( $terms as $term ) {
    7347                                         if ( ! isset( $term_ids[ $term->term_id ] ) ) {
     7347                                        if ( ! in_array( $term->term_id, $term_ids, true ) ) {
    73487348                                                $term_ids[] = $term->term_id;
    73497349                                        }
    73507350                                }