| Summary | cancelled events should not be shown as busys periods in freebusy view |
| Queue | Kronolith |
| Queue Version | 2.2-RC2 |
| Type | Bug |
| State | Resolved |
| Priority | 1. Low |
| Owners | chuck (at) horde (dot) org |
| Requester | m.gabriel (at) das-netzwerkteam (dot) de |
| Created | 03/05/2008 (6476 days ago) |
| Due | |
| Updated | 03/05/2008 (6476 days ago) |
| Assigned | |
| Resolved | 03/05/2008 (6476 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
Assigned to Chuck Hagenbuch
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ cancelled events should not be shown as busys periods in freebusy view
Queue ⇒ Kronolith
New Attachment: kronolith-freebusy.patch
+++ b/kronolith/lib/FreeBusy.php 2008-03-05 14:58:42.000000000 +0000
@@ -104,6 +104,9 @@
if ($event->hasStatus(KRONOLITH_STATUS_FREE)) {
continue;
}
+ if ($event->hasStatus(KRONOLITH_STATUS_CANCELLED)) {
+ continue;
+ }
$duration = $event->end->timestamp() -
$event->start->timestamp();