diff --git src/bp-xprofile/bp-xprofile-functions.php src/bp-xprofile/bp-xprofile-functions.php
index a437392..ef851af 100644
|
|
function xprofile_format_profile_field( $field_type, $field_value ) { |
499 | 499 | $field_value = bp_unserialize_profile_field( $field_value ); |
500 | 500 | |
501 | 501 | if ( 'datebox' == $field_type ) { |
502 | | $field_value = bp_format_time( $field_value, true ); |
| 502 | $field_value = bp_format_time( strtotime( $field_value ), true ); |
503 | 503 | } else { |
504 | 504 | $content = $field_value; |
505 | 505 | $field_value = str_replace( ']]>', ']]>', $content ); |