Fix a typo of this.

Closes #145
This commit is contained in:
Andrew Ruthven 2018-10-02 19:53:44 +13:00
parent 9a430130d8
commit 2873c89149

View File

@ -562,7 +562,7 @@ class RepeatRuleDateRange {
if ( $this->until == null ) return ($other->until > $this->from); if ( $this->until == null ) return ($other->until > $this->from);
if ( $this->from == null ) return ($other->from < $this->until); if ( $this->from == null ) return ($other->from < $this->until);
if ( $other->until == null ) return ($this->until > $other->from); 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 ); return !( $this->until < $other->from || $this->from > $other->until );
} }