diff --git a/includes/common.inc b/includes/common.inc index a159565911d..92672926f73 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 {