Index: wp-includes/meta.php
===================================================================
--- wp-includes/meta.php	(revision 30104)
+++ wp-includes/meta.php	(working copy)
@@ -478,8 +478,13 @@
 		$meta_cache = $meta_cache[$object_id];
 	}
 
-	if ( !$meta_key )
+	if ( !$meta_key ) {
+		foreach ( $meta_cache as &$meta_values ) {
+			$meta_values = array_map( 'maybe_unserialize', $meta_values );
+		}
+
 		return $meta_cache;
+	}
 
 	if ( isset($meta_cache[$meta_key]) ) {
 		if ( $single )
