We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b470ee2 commit 2b65154Copy full SHA for 2b65154
HTTPHeader.php
@@ -3,7 +3,7 @@
3
4
class HTTPHeader {
5
const HTTPHEADER_VERSION_MAJOR = 4;
6
- const HTTPHEADER_VERSION_MINOR = 1;
+ const HTTPHEADER_VERSION_MINOR = 2;
7
8
private static function header_from_server($name)
9
: string|false {
@@ -12,7 +12,6 @@ private static function header_from_server($name)
12
13
$value = $_SERVER[$name];
14
self::trim_whitespace($value);
15
-
16
return ($value != "") ? $value : false ;
17
}
18
0 commit comments