Make WordPress Core

Ticket #33451: 33451.patch

File 33451.patch, 730 bytes (added by dlh, 11 years ago)
  • src/wp-includes/meta.php

     
    480480         *                                     or an array of values.
    481481         * @param int               $object_id Object ID.
    482482         * @param string            $meta_key  Meta key.
    483          * @param string|array      $single    Meta value, or an array of values.
     483         * @param bool              $single    Whether to return only the first
     484         *                                     value of the specified $meta_key.
    484485         */
    485486        $check = apply_filters( "get_{$meta_type}_metadata", null, $object_id, $meta_key, $single );
    486487        if ( null !== $check ) {