close #19 fixed IGB Header data on WinOS installation

This commit is contained in:
Exodus4D
2015-09-20 17:33:22 +02:00
parent 4eb98f994b
commit 9e2bba5de5
2 changed files with 8 additions and 5 deletions

View File

@@ -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' &&

View File

@@ -1,7 +1,7 @@
[PATHFINDER]
NAME = "PATHFINDER"
; installed version (used for CSS/JS cache busting)
VERSION = "v0.0.9"
VERSION = "v0.0.10"
; contact information (DO NOT CHANGE)
CONTACT = "https://github.com/exodus4d"
; source code (DO NOT CHANGE)