diff options
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index a15956591..92672926f 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -709,7 +709,7 @@ function format_date($timestamp, $type = "medium", $format = "") { if (strstr("DFlMSw", $c)) { $date = t(date($c, $timestamp)) . $date; } - else if (strstr("AaBdgGhHiIjLmnrstTUWYyZz", $c)) { + else if (strstr("AaBdgGhHiIjLmnOrstTUWYyZz", $c)) { $date = date($c, $timestamp) . $date; } else { |