Fix CS issue

This commit is contained in:
Tigran Gabrielyan 2013-08-09 20:00:33 -07:00
parent 34d848d0ca
commit 777a46ff6d

View file

@ -417,7 +417,7 @@ class CakeResponse {
$this->_setContentLength();
$this->_setContentType();
foreach ($this->_headers as $header => $values) {
foreach((array)$values as $value) {
foreach ((array)$values as $value) {
$this->_sendHeader($header, $value);
}
}