Skip to content

Commit

Permalink
http header keys to lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
shayanderson committed Jul 2, 2020
1 parent fcacb8c commit 3357276
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Eco Framework
Eco is a PHP Framework for PHP 5.5+

Latest release [v1.7.8](https://github.com/shayanderson/eco/releases/latest)

Install example:
```
# wget shayanderson.com/eco.zip
Expand Down
6 changes: 6 additions & 0 deletions app/vendor/Eco/System/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,12 @@ function getallheaders()
}
}
$h = getallheaders();
// convert all to lower case
foreach($h as $k => $v)
{
unset($h[$k]);
$h[strtolower($k)] = $v;
}
}

return $h;
Expand Down
2 changes: 1 addition & 1 deletion app/vendor/Eco/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
/**
* Eco version
*/
const ECO_VERSION = '1.7.8';
const ECO_VERSION = '1.7.9';

0 comments on commit 3357276

Please sign in to comment.