event end time not tz adjusted properly

This commit is contained in:
Graham Knop 2007-10-26 16:27:54 +00:00
parent 17be7789cc
commit 99337c3473
2 changed files with 9 additions and 5 deletions

View file

@ -1911,8 +1911,8 @@ sub www_edit {
}
else {
my $end = $dtEnd->clone->set_time_zone($tz);
$endDate = $dtEnd->toMysqlDate;
$endTime = $dtEnd->toMysqlTime;
$endDate = $end->toMysqlDate;
$endTime = $end->toMysqlTime;
}
}