Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Aug 2, 2010
1 parent bbbb81e commit cb63cd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cake/libs/cake_response.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,8 @@ public function send() {
$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) {
Expand Down

0 comments on commit cb63cd1

Please sign in to comment.