Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Luis MajanoLuis MajanoPriority
NewLabels
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
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Luis Majano
Luis MajanoPriority
Labels
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 13 January 2023 at 12:05
Updated 27 January 2023 at 15:09
Resolved 27 January 2023 at 09:43
If you used a typed array, it should ONLY allow that specific type as elements. This is not the case in Lucee.
test = arrayNew( 1, "String" ); test.append( "luis" ); test.append( javaCast( "int", 1 ) ); writedump(test);
That will be valid, and it should not allow
int
s into the string array. If you switch the type tonumeric
then it works.