Skip to content

Commit

Permalink
FC-3175 dmCron listJobs should check Lucee version for result variable
Browse files Browse the repository at this point in the history
  • Loading branch information
fabio-pi committed Nov 30, 2018
1 parent 70be04f commit f6d0351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/types/dmCron.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ type properties
<cfset stAttributes.action = "list">
<cfif isDefined("application.sysinfo.engine.engine") and application.sysinfo.engine.engine eq "coldfusion">
<cfset stAttributes.result = "qJobs">
<cfelseif isDefined("application.sysinfo.engine.engine") and application.sysinfo.engine.engine eq "lucee">
<cfelseif isDefined("application.sysinfo.engine.engine") and application.sysinfo.engine.engine eq "lucee" and application.sysinfo.engine.productversion gte 5>
<cfset stAttributes.result = "qJobs">
<cfelse>
<cfset stAttributes.returnvariable = "qJobs">
Expand Down

0 comments on commit f6d0351

Please sign in to comment.