Skip to content

Commit e1cd4e1

Browse files
authored
Merge pull request #297 from fooman/patch-1
Allow = to be part of the secret value
2 parents c80e1d3 + 698f0a0 commit e1cd4e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/DataGenerator/Handlers/CredentialStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ private function encryptCredFileContents($credContents)
131131
continue;
132132
}
133133

134-
list($key, $value) = explode("=", $credValue);
134+
list($key, $value) = explode("=", $credValue, 2);
135135
if (!empty($value)) {
136136
$encryptedCreds[$key] = openssl_encrypt(
137137
$value,

0 commit comments

Comments
 (0)