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 | 05/14/2008 (6272 days ago) |
Due | |
Updated | 05/23/2008 (6263 days ago) |
Assigned | 05/16/2008 (6270 days ago) |
Resolved | 05/23/2008 (6263 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