diff --git a/modules/profile.module b/modules/profile.module index 678bbcaddad08d16394c1b1ade5a4ff689565eb1..254c3cf880b96e78c12cff1c5e4d04430d839fea 100644 --- a/modules/profile.module +++ b/modules/profile.module @@ -282,7 +282,9 @@ function profile_view_field($user, $field) { 'j' => $value['day'], 'm' => sprintf('%02d', $value['month']), 'M' => map_month($value['month']), - 'Y' => $value['year']); + 'Y' => $value['year'], + 'H:i' => null, + 'g:ia' => null); return strtr($format, $replace); case 'list': $values = split("[,\n\r]", $value); diff --git a/modules/profile/profile.module b/modules/profile/profile.module index 678bbcaddad08d16394c1b1ade5a4ff689565eb1..254c3cf880b96e78c12cff1c5e4d04430d839fea 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -282,7 +282,9 @@ function profile_view_field($user, $field) { 'j' => $value['day'], 'm' => sprintf('%02d', $value['month']), 'M' => map_month($value['month']), - 'Y' => $value['year']); + 'Y' => $value['year'], + 'H:i' => null, + 'g:ia' => null); return strtr($format, $replace); case 'list': $values = split("[,\n\r]", $value);