Fixed
Details
Details
Assignee
Unassigned
UnassignedReporter
Zac Spitzer
Zac SpitzerPriority
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 26 April 2021 at 13:25
Updated 26 April 2021 at 14:06
Resolved 26 April 2021 at 14:06
this typo doesn't throw an error about an unknown tag (it should be admin action="getScope"), it throws scope isn't defined, maybe a quirk due to auto semi colons rules....
<cfscript> action="getScope" type="server" password="secret" returnVariable="scope"; dump(scope); </cfscript>
should be
<cfscript> admin action="getScope" type="server" password="secret" returnVariable="scope"; dump(scope); </cfscript>