You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Response class the function send() dus not do anything with the header array set in the construct. So no headers are set by sending the response.
See Application/Responses/Response.php on line 55.
Add:
//Set all headers defined in headers array
if(!empty($this->headers) and is_array($this->headers)) {
foreach($this->headers as $header) {
header($header);
}
}
The text was updated successfully, but these errors were encountered:
In the Response class the function send() dus not do anything with the header array set in the construct. So no headers are set by sending the response.
See Application/Responses/Response.php on line 55.
Add:
//Set all headers defined in headers array
if(!empty($this->headers) and is_array($this->headers)) {
foreach($this->headers as $header) {
header($header);
}
}
The text was updated successfully, but these errors were encountered: