From 7479cc65702171661140cd4546a29a32599d948a Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Thu, 10 Apr 2008 07:44:01 -0400 Subject: [PATCH] #1484980: fixed problem with month abbreviations localization (problem with May and maybe others) --- 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 5c25f7f..5b82640 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -1557,7 +1557,7 @@ $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); } -- Gitblit v1.9.1