Duplicate
Details
Assignee
Michael OffnerMichael OffnerReporter
Arowolo AbiodunArowolo AbiodunPriority
BlockerNew 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
Affects versions
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Arowolo Abiodun
Arowolo AbiodunPriority
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
Affects versions
Created 30 August 2015 at 22:16
Updated 19 April 2016 at 16:35
Resolved 19 April 2016 at 16:35
When a cfml that has one or more functions is included into a cfc, the functions included are not recognised or visible within the cfc.
// test.cfc
component { public test function init() { return this; } public string function normalFunction() { return "Normal function call"; } include "inc_func.cfm"; }
// inc_func.cfm
<cfscript> public string function anotherFunction() { return "Function with a special sign"; } </cfscript>
// test.cfm
<cfscript> obj = createObject('component','test.test').init(); writedump(obj); </cfscript>