From b963755551a69a2a51e562d87b78fe5ebac87805 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 3 Nov 2008 09:54:43 +0000 Subject: [PATCH] - Patch #329273 by Damien Tournoud: make map_month() happier. --- includes/form.inc | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/includes/form.inc b/includes/form.inc index d170a1a910e..9799aeca00f 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -1716,7 +1716,21 @@ function date_validate($form) { * Helper function for usage with drupal_map_assoc to display month names. */ function map_month($month) { - return format_date(gmmktime(0, 0, 0, $month, 2, 1970), 'custom', 'M', 0); + static $months = array( + 1 => 'Jan', + 2 => 'Feb', + 3 => 'Mar', + 4 => 'Apr', + 5 => 'May', + 6 => 'Jun', + 7 => 'Jul', + 8 => 'Aug', + 9 => 'Sep', + 10 => 'Oct', + 11 => 'Nov', + 12 => 'Dec', + ); + return t($months[$month]); } /**