We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c22a01 commit 56e1edcCopy full SHA for 56e1edc
core/Form/Primitives/PrimitiveNoValue.class.php
@@ -48,7 +48,7 @@ public function importValue($value)
48
public function import($scope)
49
{
50
if (
51
- key_exists($this->name, $scope)
+ array_key_exists($this->name, $scope)
52
&& $scope[$this->name] == null
53
)
54
return $this->imported = true;
main/Net/Http/HeaderUtils.class.php
@@ -122,11 +122,9 @@ public static function sendNotCachedHeader()
122
public static function sendContentLength($length)
123
124
Assert::isInteger($length);
125
-
126
- header(
127
- "Content-Length: {$length}"
128
- );
129
+
+ header("Content-Length: {$length}");
130
self::$headerSent = true;
131
}
132
0 commit comments