[Solar-talk] server issue
Rodrigo Moraes
rodrigo.moraes at gmail.com
Thu May 3 18:06:02 PDT 2007
On 5/3/07, Andreas Ravnestad wrote:
> ^ That header line is malformed. Should be "HTTP/1.1 200 OK".
Solar_response::_sendHeaders() has this:
// build the response status code and text string
$status = "HTTP {$this->_version}/{$this->_status} "
. $this->_status_codes[$this->_status];
Maybe it should be:
$status = "HTTP/{$this->_version} {$this->_status} "
. $this->_status_codes[$this->_status];
I'm just guessing based on Andreas feedback.
rodrigo
More information about the solar-talk
mailing list