Skip to content

Commit

Permalink
Fixes thephpleague#108, fixes thephpleague#114 - ucfirst headers
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbilbie committed Dec 5, 2013
1 parent 8fe3ed7 commit dba976d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/League/OAuth2/Server/Util/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ protected function normalizeHeaders(array $headers)
{
$normalized = array();
foreach ($headers as $key => $value) {
$normalized[$this->normalizeKey($key)] = $value;
$normalized[ucfirst($this->normalizeKey($key))] = $value;
}

return $normalized;
Expand Down

0 comments on commit dba976d

Please sign in to comment.