From 46cbc276a678a25a81947fe4422ce184051d1ad7 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Sun, 9 Mar 2003 16:55:07 +0000 Subject: - Adding O modifier to format_date. --- includes/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/common.inc') 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 { -- cgit v1.2.3