From 2873c891494866eba8bab1d95eea624548fd6bc9 Mon Sep 17 00:00:00 2001 From: Andrew Ruthven Date: Tue, 2 Oct 2018 19:53:44 +1300 Subject: [PATCH] Fix a typo of this. Closes #145 --- inc/RRule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/RRule.php b/inc/RRule.php index 345029a6..bf4dc9b8 100644 --- a/inc/RRule.php +++ b/inc/RRule.php @@ -562,7 +562,7 @@ class RepeatRuleDateRange { if ( $this->until == null ) return ($other->until > $this->from); if ( $this->from == null ) return ($other->from < $this->until); if ( $other->until == null ) return ($this->until > $other->from); - if ( $other->from == null ) return ($thi->from < $other->until); + if ( $other->from == null ) return ($this->from < $other->until); return !( $this->until < $other->from || $this->from > $other->until ); }