kopia lustrzana https://github.com/friendica/friendica
Merge pull request #2744 from tobiasd/20160820-cal
events with no finish should not export it to icalpull/2750/head
commit
f9bd6894de
|
@ -673,7 +673,7 @@ function event_format_export ($events, $format = 'ical', $timezone) {
|
||||||
$dtformat = "%Y%m%dT%H%M%S".$UTC;
|
$dtformat = "%Y%m%dT%H%M%S".$UTC;
|
||||||
$o .= 'DTSTART:'.strftime($dtformat, $tmp).PHP_EOL;
|
$o .= 'DTSTART:'.strftime($dtformat, $tmp).PHP_EOL;
|
||||||
}
|
}
|
||||||
if ($event['finish']) {
|
if (!$event['nofinish']) {
|
||||||
$tmp = strtotime($event['finish']);
|
$tmp = strtotime($event['finish']);
|
||||||
$dtformat = "%Y%m%dT%H%M%S".$UTC;
|
$dtformat = "%Y%m%dT%H%M%S".$UTC;
|
||||||
$o .= 'DTEND:'.strftime($dtformat, $tmp).PHP_EOL;
|
$o .= 'DTEND:'.strftime($dtformat, $tmp).PHP_EOL;
|
||||||
|
@ -732,13 +732,13 @@ function events_by_uid($uid = 0, $sql_extra = '') {
|
||||||
// requested? then show all of your events, otherwise only those that
|
// requested? then show all of your events, otherwise only those that
|
||||||
// don't have limitations set in allow_cid and allow_gid
|
// don't have limitations set in allow_cid and allow_gid
|
||||||
if (local_user() == $uid) {
|
if (local_user() == $uid) {
|
||||||
$r = q("SELECT `start`, `finish`, `adjust`, `summary`, `desc`, `location`
|
$r = q("SELECT `start`, `finish`, `adjust`, `summary`, `desc`, `location`, `nofinish`
|
||||||
FROM `event` WHERE `uid`= %d AND `cid` = 0 ",
|
FROM `event` WHERE `uid`= %d AND `cid` = 0 ",
|
||||||
intval($uid)
|
intval($uid)
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
$r = q("SELECT `start`, `finish`, `adjust`, `summary`, `desc`, `location`FROM `event`
|
$r = q("SELECT `start`, `finish`, `adjust`, `summary`, `desc`, `location`, `nofinish`
|
||||||
WHERE `uid` = %d AND `cid` = 0 $sql_extra ",
|
FROM `event` WHERE `uid`= %d AND `cid` = 0 $sql_extra ",
|
||||||
intval($uid)
|
intval($uid)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue