From 4fe8540e2fb4ab7b5d91a1aa32790079e5a2c35f Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Tue, 11 Nov 2008 18:27:36 +0000 Subject: [PATCH] fixing core.date; returned wrong item --- fp-includes/core/core.date.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fp-includes/core/core.date.php b/fp-includes/core/core.date.php index 4d240e5..b2f2087 100755 --- a/fp-includes/core/core.date.php +++ b/fp-includes/core/core.date.php @@ -92,7 +92,7 @@ $arr['HMS'] = $arr['H'] . $arr['M'] . $arr['S']; $arr['time'] = mktime($arr['H'], $arr['M'], $arr['S'], - $arr['y'], $arr['m'], $arr['d']); + $arr['m'], $arr['d'], $arr['y']); return $arr;