diff --git a/control/HTTPResponse.php b/control/HTTPResponse.php index 1df15f913..90c37d7db 100644 --- a/control/HTTPResponse.php +++ b/control/HTTPResponse.php @@ -286,7 +286,7 @@ EOT * @return bool */ public function isFinished() { - return in_array($this->statusCode, array(301, 302, 401, 403)); + return in_array($this->statusCode, array(301, 302, 303, 304, 305, 307, 401, 403)); } }