Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Pothys - MitrahSoftPothys - MitrahSoftPriority
NewLabels
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
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Pothys - MitrahSoft
Pothys - MitrahSoftPriority
Labels
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 3 February 2021 at 10:27
Updated 18 June 2023 at 16:58
Resolved 26 July 2022 at 10:13
A negative index array throws an error. If we use animals[ -6 ] means lucee throws an error. ACF returns the first index value.
example:
<cfscript> animals = ['aa', 'bb', 'cc', 'dd', 'ee', 'ff']; writeOutput(animals[-6]); // retuns aa </cfscript>