Issues
- custom tag in script not get executedLDEV-4472Resolved issue: LDEV-4472Michael Offner
- add cachedWithin support for custom tagsLDEV-4164
- Using "caller.thread" in custom tag corrupts the Thread scope.LDEV-3722Michael Offner
- Custom tags/include page inside a long-running thread throw a NullPointerExceptionLDEV-3689Resolved issue: LDEV-3689Pothys - MitrahSoft
- Calling getBaseTagList() inside CFModule execution.LDEV-3359Michael Offner
- Difference in CALLER scope assignment between ACF and LuceeLDEV-3309Michael Offner
- expanding path for this.customtagpath failsLDEV-2825Resolved issue: LDEV-2825Michael Offner
7 of 7
custom tag in script not get executed
Fixed
Description
Environment
None
Attachments
1
Details
Assignee
Michael OffnerMichael OffnerReporter
Michael OffnerMichael OffnerPriority
MajorLabels
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
Michael Offner
Michael OffnerPriority
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 10 May 2023 at 09:02
Updated 7 May 2024 at 12:57
Resolved 7 May 2024 at 12:57
Activity
Show:
When you have a custom tag in script with no “end tag“ it not get executed.
See this example
<cfscript> _SomeTag2; </cfscript>
when you have an end tag, it get executed as expected
See this example
<cfscript> _SomeTag2 {} </cfscript>
this affect CFMl and CFC based custom tags but only in script.