| Summary | Freebusy: unknown blocks |
| Queue | Kronolith |
| Queue Version | 2.2-RC3 |
| Type | Bug |
| State | No Feedback |
| Priority | 1. Low |
| Owners | |
| Requester | noethen (at) uni-paderborn (dot) de |
| Created | 5/14/08 (6540 days ago) |
| Due | |
| Updated | 5/23/08 (6531 days ago) |
| Assigned | 5/16/08 (6538 days ago) |
| Resolved | 5/23/08 (6531 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
State ⇒ Feedback
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ Kronolith
Summary ⇒ Freebusy: unknown blocks
Type ⇒ Bug
State ⇒ Unconfirmed
I found a problem displaying the freebusy-information for required
attendees. Allways the block "unknown" is displayed. In the part of
"All attendees" the correct "sum" is displayed. So the problem is
somewhere in
kronolith/lib/FBView.php -> function _getBlocks
if ($member->getStart() > $start ||
$member->getEnd() < $end) {
$blocks .= $template->fetch(KRONOLITH_TEMPLATES .
'/fbview/unknownblock.html');
continue;
}
My hotfix looks like this so the freebusy-blocks are displayed correct...
if ($member->getStart() == 0 || $member->getEnd() == 0) {
$blocks .= $template->fetch(KRONOLITH_TEMPLATES .
'/fbview/unknownblock.html');
continue;
}
We use horde in a kolab environment.
Greetings
Heiko Nöthen