[#6700] Freebusy: unknown blocks
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 (52 days ago)
Due
Updated 05/23/2008 (43 days ago)
Assigned 05/16/2008 (50 days ago)
Resolved 05/23/2008 (43 days ago)
Attachments
Milestone
Patch No

History
05/23/2008 Chuck Hagenbuch State ⇒ No Feedback
 
05/16/2008 Jan Schneider Comment #2
State ⇒ Feedback
Reply to this comment
Works perfectly fine here, without any changes.
05/14/2008 noethen (at) uni-paderborn (dot) de Comment #1
Patch ⇒
Milestone ⇒
Queue ⇒ Kronolith
Summary ⇒ Freebusy: unknown blocks
Type ⇒ Bug
Priority ⇒ 1. Low
State ⇒ Unconfirmed
Reply to this comment
Hello,

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