From 1bc45e19b8562a5eaaea161c92598b58bdb4462f Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Mon, 21 Sep 2009 19:53:27 -0400 Subject: [PATCH] Correct conditional that catches conflicts. Allow the next event to start at the end time of the previous event. --- kronolith/lib/Resource/Single.php | 1 + 1 file changed, 1 insertion(+) 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; } } -- 2.11.0