From: Michael J. Rubinsky Date: Mon, 21 Sep 2009 23:53:27 +0000 (-0400) Subject: Correct conditional that catches conflicts. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1bc45e19b8562a5eaaea161c92598b58bdb4462f;p=horde.git Correct conditional that catches conflicts. Allow the next event to start at the end time of the previous event. --- diff --git a/kronolith/lib/Resource/Single.php b/kronolith/lib/Resource/Single.php index dbb1b12f6..c9c64380d 100644 --- a/kronolith/lib/Resource/Single.php +++ b/kronolith/lib/Resource/Single.php @@ -60,6 +60,7 @@ class Kronolith_Resource_Single extends Kronolith_Resource_Base // the previous event ends. if (!($e->start->compareDateTime($end) >= 0) && !($e->end->compareDateTime($start) <= 0)) { + return false; } }