Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Dan MurphyDan MurphyPriority
CriticalFix versions
New 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
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Dan Murphy
Dan MurphyPriority
Fix versions
New 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
Created 14 June 2016 at 03:23
Updated 1 April 2019 at 20:29
Resolved 19 October 2018 at 16:54
Problem Description:
When using the DateDiff function with a datepart of "w" (Weekdays), you get the number of weeks between the two dates instead of Weekdays between the two dates. This is exactly the same as using a date part of "ww" (Weeks). The docs are weird because they say "w: Weekdays (same as ww)". My guess is this was originally a bug and then the docs were just updated to reflect the bug instead of just fixing it or something.
Steps to Reproduce:
<cfscript>
weeks = dateDiff("w","2016-06-11","2016-06-21");
WriteDump(weeks);
</cfscript>
http://trycf.com/gist/619f940e10314c161b9f71917417d066/lucee5?theme=monokai
Actual Result:
1
Expected Result:
7
Any Workarounds:
Build your own Weekdays function