diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-10 11:44:01 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-10 11:44:01 +0000 |
| commit | a88d13c30e5b25a3416df7e97a24b995576e73a8 (patch) | |
| tree | ff57ec631b339bc68d24ae5ab4f5e91776c2f95a /roundcubemail/program/include | |
| parent | 2a7bd5f3e226e0dfe45dea158b7fe05757cd9718 (diff) | |
#1484980: fixed problem with month abbreviations localization (problem with May and maybe others)
git-svn-id: https://svn.roundcube.net/trunk@1278 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/main.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index 5c25f7fad..5b82640f7 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/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); } |
