diff options
author | alecpl <alec@alec.pl> | 2008-04-10 11:44:01 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-04-10 11:44:01 +0000 |
commit | 7479cc65702171661140cd4546a29a32599d948a (patch) | |
tree | a79e433f86f27381d8b74c5f8ba493ee5a2854be /program/include | |
parent | 7be658c0eb500f4a5a239b5cb2611195687fc703 (diff) |
#1484980: fixed problem with month abbreviations localization (problem with May and maybe others)
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/main.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |