Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Pete FreitagPete FreitagNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
NoneFix versions
Affects versions
Priority
Major
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Pete Freitag
Pete FreitagNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Fix versions
Affects versions
Priority
Created 19 October 2018 at 14:50
Updated 8 June 2023 at 08:49
Resolved 22 November 2021 at 09:48
The diff member function as implemented in lucee operates inversely to the ACF implementation, so the same code will produce a positive number on one engine and a negative number on the other.
Here is an example:
https://trycf.com/gist/df4796e9f5252d781b104ebb2da3f595/lucee5
https://trycf.com/gist/df4796e9f5252d781b104ebb2da3f595/acf2018
The code:
date1 = '2018-10-10'; writeOutput(dateDiff('d', '2018-10-10', '2018-10-25')); diffDate = dateAdd('d', 0, date1); writeOutput(diffDate.diff('d', '2018-10-25'));
Outputs `1515` on lucee and `15-15` on ACF.