Skip to content

Commit 2b65154

Browse files
committed
HTTPHEADER_VERSION_MINOR = 2
1 parent b470ee2 commit 2b65154

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

HTTPHeader.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class HTTPHeader {
55
const HTTPHEADER_VERSION_MAJOR = 4;
6-
const HTTPHEADER_VERSION_MINOR = 1;
6+
const HTTPHEADER_VERSION_MINOR = 2;
77

88
private static function header_from_server($name)
99
: string|false {
@@ -12,7 +12,6 @@ private static function header_from_server($name)
1212

1313
$value = $_SERVER[$name];
1414
self::trim_whitespace($value);
15-
1615
return ($value != "") ? $value : false ;
1716
}
1817

0 commit comments

Comments
 (0)