We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab8c324 + f49b419 commit 7e2e0b5Copy full SHA for 7e2e0b5
core/api.cfc
@@ -1358,7 +1358,7 @@
1358
<cfset local.credentials.password = "" />
1359
<cftry>
1360
<cfset local.encodedCredentials = ListLast( GetPageContext().getRequest().getHeader("Authorization"), " " ) />
1361
- <cfset local.decodedCredentials = toString( toBinary( local.EncodedCredentials ) ) />
+ <cfset local.decodedCredentials = toString( toBinary( local.EncodedCredentials ), "iso-8859-1" ) />
1362
<cfset local.credentials.username = listFirst( local.decodedCredentials, ":" ) />
1363
<cfset local.credentials.password = listRest( local.decodedCredentials, ":" ) />
1364
<cfcatch></cfcatch>
0 commit comments