Make WordPress Core

Ticket #39215: 39215.4.patch

File 39215.4.patch, 1.4 KB (added by tyxla, 8 years ago)

Remove an unnecessary is_string() check

  • src/wp-includes/taxonomy.php

     
    18771877                $object_ids = array($object_ids);
    18781878        $object_ids = array_map('intval', $object_ids);
    18791879
     1880        $args = wp_parse_args( $args );
     1881
    18801882        $args['taxonomy'] = $taxonomies;
    18811883        $args['object_ids'] = $object_ids;
    18821884
  • tests/phpunit/tests/term/wpGetObjectTerms.php

     
    690690                // all terms should still be objects
    691691                return $terms;
    692692        }
     693
     694        public function test_verify_args_parameter_can_be_string() {
     695                $p = self::factory()->post->create();
     696
     697                $t1 = self::factory()->term->create( array(
     698                        'taxonomy' => $this->taxonomy,
     699                        'name' => 'AAA',
     700                ) );
     701                $t2 = self::factory()->term->create( array(
     702                        'taxonomy' => $this->taxonomy,
     703                        'name' => 'ZZZ',
     704                ) );
     705                $t3 = self::factory()->term->create( array(
     706                        'taxonomy' => $this->taxonomy,
     707                        'name' => 'JJJ',
     708                ) );
     709
     710                wp_set_object_terms( $p, array( $t1, $t2, $t3 ), $this->taxonomy );
     711
     712                $found = wp_get_object_terms( $p, $this->taxonomy, 'orderby=name&fields=ids' );
     713
     714                $this->assertEquals( array( $t1, $t3, $t2 ), $found );
     715        }
    693716}