Modify ↓
Ticket #287 (closed defect: fixed)
DateSelector.php bug
| Reported by: | ian.maffett@… | Owned by: | hans |
|---|---|---|---|
| Priority: | major | Milestone: | 2.3.1 |
| Component: | phing-core | Version: | 2.3.1RC1 |
| Keywords: | Cc: |
Description
There's a bug in the DateSelector.php file at line 207, isSelected function
return (($file->lastModified() . $this->granularity) > $this->seconds);
Should be
return (($file->lastModified() - $this->granularity) > $this->seconds);
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

(In [396]) Refs #287 - Fixing typo in date comparison code.