Ticket #22342: meta.php.2.patch
| File meta.php.2.patch, 436 bytes (added by , 13 years ago) |
|---|
-
wp-includes/meta.php
274 274 $check = apply_filters( "get_{$meta_type}_metadata", null, $object_id, $meta_key, $single ); 275 275 if ( null !== $check ) { 276 276 if ( $single && is_array( $check ) ) 277 return $check[0];277 return @$check[0]; 278 278 else 279 279 return $check; 280 280 }