Skip to content

Commit 1429103

Browse files
committed
Merge branch 'rost1994-master'
2 parents 772c1ad + bbfc061 commit 1429103

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/FlexAuthTypeProviderFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public static function resolveParamsFromLine(string $line): array {
5555

5656
$stringParams = $parts[2];
5757
foreach (explode("&", $stringParams) as $keyValue) {
58-
[$key, $value] = explode("=", $keyValue);
58+
[$key, $value] = explode("=", $keyValue, 2);
5959
if ($key && $value) {
6060
$params[$key] = $value;
6161
}
@@ -64,4 +64,4 @@ public static function resolveParamsFromLine(string $line): array {
6464

6565
return $params;
6666
}
67-
}
67+
}

0 commit comments

Comments
 (0)