[Tickets #6700] Freebusy: unknown blocks

bugs at horde.org bugs at horde.org
Wed May 14 14:17:08 UTC 2008


DO NOT REPLY TO THIS MESSAGE. THIS EMAIL ADDRESS IS NOT MONITORED.

Ticket URL: http://bugs.horde.org/ticket/6700
-----------------------------------------------------------------------
 Ticket             | 6700
 Created By         | noethen at uni-paderborn.de
 Summary            | Freebusy: unknown blocks
 Queue              | Kronolith
 Version            | 2.2-RC3
 Type               | Bug
 State              | Unconfirmed
 Priority           | 1. Low
 Milestone          |
 Patch              |
 Owners             |
-----------------------------------------------------------------------


noethen at uni-paderborn.de (2008-05-14 10:17) wrote:

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




More information about the bugs mailing list