Details
Assignee
Michael OffnerMichael OffnerReporter
AJ LemkeAJ LemkePriority
MajorLabels
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
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
AJ Lemke
AJ LemkePriority
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
Created 12 December 2017 at 20:04
Updated 9 August 2024 at 12:01
Query strings that contain two of the same parameters behave differently in Lucee than others.
Example:
http://www.site.com/?a=&a=1
Lucee: a is "1"
ACF: a is ",1"
Node/Express: a is ",1"
Java/Spring: a is ",1"
Classic ASP: a is “,1”
.Net/C#: a is “,1”
The double quotes are the denote the value of a and are not in the actual value.
Notice that all of the others including ACF have the value ",1"