Skip to content

Commit ee6a12b

Browse files
authored
Merge pull request #422 from brycehipp/replace-colon-with-equals-for-cf9
Replace colon with equals sign for older CF support
2 parents 00a1191 + 2475d23 commit ee6a12b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/baseSerializer.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
noContent() returns with HTTP status code 204 and Content-Type as text/plain (omitting this header is difficult and maybe not recommanded)
108108
noData() is kept 'as is' for backward compatibility with existing implementations
109109
--->
110-
<cfreturn this.withStatus(204).withHeaders({"Content-Type":"text/plain"}) />
110+
<cfreturn this.withStatus(204).withHeaders({"Content-Type"="text/plain"}) />
111111
</cffunction>
112112

113113
<cffunction name="setFileName" access="public" output="false" hint="Pass in a file-name (fully qualified, e.g. c:\temp\img.jpg) to have Taffy stream this file back to the client">

0 commit comments

Comments
 (0)