Skip to content

Commit

Permalink
remove utf8_decode from credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
airmoi committed Oct 30, 2017
1 parent 01750dd commit 7f8178c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FileMaker.php
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ public function execute($params, $grammar = 'fmresultset')

if ($this->getProperty('username')) {
$auth = base64_encode(
utf8_decode($this->getProperty('username')) . ':' . utf8_decode($this->getProperty('password'))
$this->getProperty('username') . ':' . $this->getProperty('password')
);
$authHeader = 'Authorization: Basic ' . $auth;
curl_setopt(
Expand Down

0 comments on commit 7f8178c

Please sign in to comment.