Skip to content

Commit

Permalink
lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
thybag authored Mar 16, 2019
1 parent 36d4436 commit 5618075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Thybag/Auth/SharePointOnlineAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ protected function extractAuthCookies($result){
// Get the two auth cookies
foreach($header_array as $header) {
$loop = explode(":",$header);
if (strtolower($loop[0]) == 'Set-Cookie') {
if (strtolower($loop[0]) == 'set-cookie') {
$authCookies[] = $loop[1];
}
}
Expand Down

0 comments on commit 5618075

Please sign in to comment.