From 7479cc65702171661140cd4546a29a32599d948a Mon Sep 17 00:00:00 2001 From: alecpl Date: Thu, 10 Apr 2008 11:44:01 +0000 Subject: #1484980: fixed problem with month abbreviations localization (problem with May and maybe others) --- program/include/main.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/include/main.inc') diff --git a/program/include/main.inc b/program/include/main.inc index 5c25f7fad..5b82640f7 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -1557,7 +1557,7 @@ function format_date($date, $format=NULL) $out .= rcube_label(strtolower(date('M', $timestamp))); // month name (long) else if ($format{$i}=='F') - $out .= rcube_label(strtolower(date('F', $timestamp))); + $out .= rcube_label('long'.strtolower(date('M', $timestamp))); else $out .= date($format{$i}, $timestamp); } -- cgit v1.2.3