Changeset 3410

Show
Ignore:
Timestamp:
01/06/06 01:30:13 (3 years ago)
Author:
ryan
Message:

Fix get_post_meta() array return. fixes #2183

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/functions.php

    r3404 r3410  
    473473            return maybe_unserialize( $post_meta_cache[$post_id][$key][0] ); 
    474474        } else { 
    475             return maybe_unserialize( $post_meta_cache[$post_id][$key][0] ); 
     475            return maybe_unserialize( $post_meta_cache[$post_id][$key] ); 
    476476        } 
    477477    }