mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing typo
This commit is contained in:
parent
bbbb81e10a
commit
cb63cd171c
1 changed files with 2 additions and 2 deletions
|
@ -338,8 +338,8 @@ class CakeResponse {
|
|||
$this->statusCode(302);
|
||||
}
|
||||
|
||||
$codeMesasge = $this->_statusCodes[$this->_status];
|
||||
$this->_sendHeader("{$this->_protocol} {$this->_status} {$codeMesasge}");
|
||||
$codeMessage = $this->_statusCodes[$this->_status];
|
||||
$this->_sendHeader("{$this->_protocol} {$this->_status} {$codeMessage}");
|
||||
$this->_sendHeader('Content-Type', "{$this->_contentType}; charset={$this->_charset}");
|
||||
|
||||
foreach ($this->_headers as $header => $value) {
|
||||
|
|
Loading…
Reference in a new issue