Add missing globals to post_custom(). http://mosquito.wordpress.org/view.php?id=1058 Props: kellan

git-svn-id: http://svn.automattic.com/wordpress/trunk@2420 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2005-03-08 16:28:57 +00:00
parent afabe5523d
commit 4964935ced
1 changed files with 2 additions and 0 deletions

View File

@ -234,6 +234,8 @@ function get_post_custom_values($key='') {
}
function post_custom( $key = '' ) {
global $id, $post_meta_cache;
if ( 1 == count($post_meta_cache[$id][$key]) ) return $post_meta_cache[$id][$key][0];
else return $post_meta_cache[$id][$key];
}