Fix Core\Test
This commit is contained in:
parent
82d07fcd73
commit
abd41ee853
1 changed files with 8 additions and 7 deletions
|
@ -72,13 +72,14 @@ class Test
|
|||
) {
|
||||
$index += 1;
|
||||
}
|
||||
if (
|
||||
empty($_SERVER['HTTP_CACHE_CONTROL'])
|
||||
&& false !== \strpos($_SERVER['SERVER_PROTOCOL'], '1.1')
|
||||
) {
|
||||
$index += 1;
|
||||
} elseif (false !== \strpos($_SERVER['SERVER_PROTOCOL'], '1.0')) {
|
||||
$index += 3;
|
||||
if (empty($_SERVER['HTTP_CACHE_CONTROL'])) {
|
||||
if (false !== \strpos($_SERVER['SERVER_PROTOCOL'], '1.1')) {
|
||||
$index += 1;
|
||||
}
|
||||
} else {
|
||||
if (false !== \strpos($_SERVER['SERVER_PROTOCOL'], '1.0')) {
|
||||
$index += 3;
|
||||
}
|
||||
}
|
||||
if (empty($_SERVER['HTTP_CONNECTION'])) {
|
||||
$index += 1;
|
||||
|
|
Loading…
Reference in a new issue