Skip to content

Commit f44f975

Browse files
authored
Allow = to be part of the secret value
1 parent 727c9c4 commit f44f975

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)