Index: bp-xprofile/bp-xprofile-functions.php
===================================================================
--- bp-xprofile/bp-xprofile-functions.php	(revision 6849)
+++ bp-xprofile/bp-xprofile-functions.php	(working copy)
@@ -370,7 +370,14 @@
 	$field_value = bp_unserialize_profile_field( $field_value );
 
 	if ( 'datebox' == $field_type ) {
-		$field_value = bp_format_time( $field_value, true );
+		// If Unix timestamp
+		if ( is_numeric( $field_value ) ) {
+			$field_value = bp_format_time( $field_value, true, false );
+
+		// If MySQL timestamp
+		} else {
+			$field_value = bp_format_time( strtotime( $field_value ), true, false );
+		}
 	} else {
 		$content = $field_value;
 		$field_value = str_replace( ']]>', ']]&gt;', $content );
