From 15d49d77d5662688595997ad6386d670b58b4499 Mon Sep 17 00:00:00 2001 From: stekkel Date: Tue, 29 Jul 2003 23:16:21 +0000 Subject: [PATCH] whoops git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5475 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/date.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/date.php b/functions/date.php index 7f352df2..8edb856c 100644 --- a/functions/date.php +++ b/functions/date.php @@ -250,8 +250,8 @@ function date_intl( $date_format, $stamp ) { $ret = date('w#m#'. $ret, $stamp ); // to reduce the date calls we retrieve m and w in the same call $aParts = explode('#',$ret); // extract day and month in order to replace later by intl day and month $ret = str_replace(array('$1','$4','$2','$3',), array(getDayAbrv($aParts[0]), - getMonthAbrv($Parts[1]), - getMonthName($Parts[1]), + getMonthAbrv($aParts[1]), + getMonthName($aParts[1]), getDayName($aParts[0])), $aParts[2]); return( $ret ); -- 2.25.1