aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Channel_calendar.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-04-03 19:50:50 +0000
committerMario <mario@mariovavti.com>2020-04-03 19:50:50 +0000
commitcec2e92fe381a5e4bb67426290303639dd260358 (patch)
tree8429951d6e0ce1816a0ff7fa58e1e5d962365600 /Zotlabs/Module/Channel_calendar.php
parent625438ff642381472b4ba6c86bad7f26f69e8083 (diff)
downloadvolse-hubzilla-cec2e92fe381a5e4bb67426290303639dd260358.tar.gz
volse-hubzilla-cec2e92fe381a5e4bb67426290303639dd260358.tar.bz2
volse-hubzilla-cec2e92fe381a5e4bb67426290303639dd260358.zip
more timezone changes
Diffstat (limited to 'Zotlabs/Module/Channel_calendar.php')
-rw-r--r--Zotlabs/Module/Channel_calendar.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Channel_calendar.php b/Zotlabs/Module/Channel_calendar.php
index 79eb5797f..87dd2ffb6 100644
--- a/Zotlabs/Module/Channel_calendar.php
+++ b/Zotlabs/Module/Channel_calendar.php
@@ -34,8 +34,8 @@ class Channel_calendar extends \Zotlabs\Web\Controller {
$adjust = intval($_POST['adjust']);
- $start = datetime_convert('UTC', 'UTC', escape_tags($_REQUEST['dtstart']));
- $finish = datetime_convert('UTC', 'UTC', escape_tags($_REQUEST['dtend']));
+ $start = datetime_convert($tz, 'UTC', escape_tags($_REQUEST['dtstart']));
+ $finish = datetime_convert($tz, 'UTC', escape_tags($_REQUEST['dtend']));
$summary = escape_tags(trim($_POST['summary']));
$desc = escape_tags(trim($_POST['desc']));