From 7f8178cc7a327fabba5d57adb2beb2485a8adb1c Mon Sep 17 00:00:00 2001 From: Romain Dunand Date: Mon, 30 Oct 2017 22:26:18 +0100 Subject: [PATCH] remove utf8_decode from credentials --- src/FileMaker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FileMaker.php b/src/FileMaker.php index dc65c5c..9984799 100644 --- a/src/FileMaker.php +++ b/src/FileMaker.php @@ -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(