Index: modules/profile/profile.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/profile/profile.module,v
retrieving revision 1.288
diff -u -p -r1.288 profile.module
--- modules/profile/profile.module	12 Mar 2010 15:56:29 -0000	1.288
+++ modules/profile/profile.module	2 Apr 2010 10:21:21 -0000
@@ -303,11 +303,16 @@ function profile_view_field($account, $f
         // 1970 on Windows. This would make the date field useless for e.g.
         // birthdays.
         $replace = array(
+          // date
           'd' => sprintf('%02d', $value['day']),
+          'D' => format_date(gmmktime(0, 0, 0, $value['month'], $value['day'], $value['year']), 'custom', 'D'),
           'j' => $value['day'],
+          // month
           'm' => sprintf('%02d', $value['month']),
           'M' => map_month($value['month']),
+          // year
           'Y' => $value['year'],
+          'y' => substr($value['year'], 2, 2),
           'H:i' => NULL,
           'g:ia' => NULL,
         );
