close #19 fixed IGB Header data on WinOS installation
This commit is contained in:
@@ -105,7 +105,7 @@ class Controller {
|
||||
}
|
||||
|
||||
/**
|
||||
* extract all eve IGB specific header data
|
||||
* get all eve IGB specific header data
|
||||
* @return object
|
||||
*/
|
||||
static function getIGBHeaderData(){
|
||||
@@ -115,9 +115,12 @@ class Controller {
|
||||
$headerData = apache_request_headers();
|
||||
|
||||
foreach($headerData as $key => $value){
|
||||
if (strpos($key, 'EVE_') === 0) {
|
||||
$key = str_replace('EVE_', '', $key);
|
||||
$key = strtolower($key);
|
||||
$key = strtolower($key);
|
||||
$key = str_replace('eve_', 'eve-', $key);
|
||||
|
||||
|
||||
if (strpos($key, 'eve-') === 0) {
|
||||
$key = str_replace('eve-', '', $key);
|
||||
|
||||
if (
|
||||
$key === 'trusted' &&
|
||||
|
||||
Reference in New Issue
Block a user