aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2019-06-03 13:25:48 +0200
committerMario <mario@mariovavti.com>2019-06-03 13:25:48 +0200
commit5b4aa1afc2d3811aae93706299dfb5d5c703198f (patch)
treea7b870e2703d8b61356564df8018a5f0d36eb9eb /Zotlabs
parent89205276ab7642be3a4afacd9b613ff006f7ede3 (diff)
downloadvolse-hubzilla-5b4aa1afc2d3811aae93706299dfb5d5c703198f.tar.gz
volse-hubzilla-5b4aa1afc2d3811aae93706299dfb5d5c703198f.tar.bz2
volse-hubzilla-5b4aa1afc2d3811aae93706299dfb5d5c703198f.zip
regard timezones in calendar import/export
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Channel_calendar.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zotlabs/Module/Channel_calendar.php b/Zotlabs/Module/Channel_calendar.php
index 13f879d84..4f08eb27c 100644
--- a/Zotlabs/Module/Channel_calendar.php
+++ b/Zotlabs/Module/Channel_calendar.php
@@ -304,7 +304,9 @@ class Channel_calendar extends \Zotlabs\Web\Controller {
);
}
elseif($export) {
- $r = q("SELECT * from event where uid = %d and dtstart > '%s' and dtend > dtstart",
+ $r = q("SELECT event.*, item.id as item_id
+ from event left join item on item.resource_id = event.event_hash
+ where event.uid = %d and event.dtstart > '%s' and event.dtend > event.dtstart",
intval(local_channel()),
dbesc(NULL_DATE)
);