From 46cbc276a678a25a81947fe4422ce184051d1ad7 Mon Sep 17 00:00:00 2001
From: Kjartan Mannes <kjartan@2.no-reply.drupal.org>
Date: Sun, 9 Mar 2003 16:55:07 +0000
Subject: [PATCH] - Adding O modifier to format_date.

---
 includes/common.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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