1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

Issue #132 - timezone-related display problem in event listing

This commit is contained in:
SteveD
2013-03-05 21:36:25 +00:00
parent 7e6b38cbe4
commit 4c9027b93f

View File

@@ -273,11 +273,11 @@ else
{ {
if (is_numeric($action)) if (is_numeric($action))
{ {
$dateArray = getdate($action); $dateArray = $ecal_class->gmgetdate($action);
} }
else else
{ {
$dateArray = getdate($ds); $dateArray = $ecal_class->gmgetdate($ds);
} }
} }
} }