Make WordPress Core

Ticket #38631: 38631.1.diff

File 38631.1.diff, 728 bytes (added by danielbachhuber, 8 years ago)
  • src/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php

    diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php
    index 98a5e21..5ae2621 100644
    a b class WP_REST_Taxonomies_Controller extends WP_REST_Controller { 
    279279                                'types'            => array(
    280280                                        'description'  => __( 'Types associated with resource.' ),
    281281                                        'type'         => 'array',
     282                                        'items'        => array(
     283                                                'type' => 'string',
     284                                        ),
    282285                                        'context'      => array( 'view', 'edit' ),
    283286                                        'readonly'     => true,
    284287                                ),