Summary | kronolith/lib/Driver.php: isAllDay() incorrect test |
Queue | Kronolith |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | |
Requester | patrick.abiven (at) apitech (dot) fr |
Created | 03/29/2007 (6699 days ago) |
Due | |
Updated | 04/07/2007 (6690 days ago) |
Assigned | |
Resolved | 04/07/2007 (6690 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
fixed nonetheless.
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ kronolith/lib/Driver.php: isAllDay() incorrect test
Queue ⇒ Kronolith
isAllDay () function seems to contain an incorrect statement for
testing $this->end->sec. The test is written with $this->start->sec.
line 1486:
- $this->end->hour == 0 && $this->end->min == 0 && $this->start->sec == 0 &&
+ $this->end->hour == 0 && $this->end->min == 0 && $this->end->sec == 0 &&
Regards
Patrick