Skip to content

Commit

Permalink
Merge pull request #87 from seancoyne/patch-1
Browse files Browse the repository at this point in the history
Fix QueryAddColumn n ACF
  • Loading branch information
justincarter authored Oct 30, 2018
2 parents 8806c94 + a10de88 commit 82e55e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cdn/s3.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@
<cfdirectory action="list" directory="#s3path#" recurse="true" listinfo="#arguments.listinfo#" name="qDir" sort="name" />

<cfif arguments.listinfo EQ "name">
<cfset QueryAddColumn( qDir, "file")>
<cfset QueryAddColumn( qDir, "file", [])>
<cfloop query="qDir">
<cfset querysetcell(qDir,"file","/" & qDir.name, qDir.CurrentRow) />
</cfloop>
Expand Down Expand Up @@ -1305,4 +1305,4 @@
<cfreturn stResult />
</cffunction>

</cfcomponent>
</cfcomponent>

0 comments on commit 82e55e3

Please sign in to comment.