Make WordPress Core

Ticket #31086: taxonomy.php.patch

File taxonomy.php.patch, 384 bytes (added by joshlevinson, 11 years ago)
  • taxonomy.php

     
    36873687 */
    36883688function get_object_term_cache($id, $taxonomy) {
    36893689        $cache = wp_cache_get($id, "{$taxonomy}_relationships");
     3690        if( is_array( $cache ) ) {
     3691                return array_values( $cache );
     3692        }
    36903693        return $cache;
    36913694}
    36923695