Development

Changeset 5707

You must first sign up to be able to contribute.

Changeset 5707

Show
Ignore:
Timestamp:
10/26/07 21:50:49 (8 months ago)
Author:
pookey
Message:

Updating HTTP header to 1.1 to allow for things such as connection keep-alive, which is part of the 1.1 spec

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/response/sfWebResponse.class.php

    r5092 r5707  
    279279 
    280280    // status 
    281     $status = 'HTTP/1.0 '.$this->statusCode.' '.$this->statusText; 
     281    $status = 'HTTP/1.1 '.$this->statusCode.' '.$this->statusText; 
    282282    header($status); 
    283283