summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc2
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 {