Is it possible to call Custom Tags from CFscript as was added in ACF 11?
Trying to migrate a project over and running into some issues.
Thanks,
Is it possible to call Custom Tags from CFscript as was added in ACF 11?
Trying to migrate a project over and running into some issues.
Thanks,
What syntax have you tried? This comes to mind.
module template='foo.cfm';
cf_aqs_log(type="Information", category="Application", userID="0", text="Application #this.name# Started");
…is the existing code.
It does seem that the following is the functional equivalent:
module template="assets\customTags\aqs_log.cfm" type="Information" category="Application" userID="0" text="Application #this.name# Started";
Was just hoping I wouldn’t have to change this, because it’s EVERYWHERE! lol