the following code in Zend_Controller_Response_Abstract::setHTtpResponseCode(),
if ((300 <= $code) || (307 >= $code)) { $this->_isRedirect = true;
it will be
if ((300 <= $code) && (307 >= $code)) { $this->_isRedirect = true;
Assigning to Matthew.
Resolved in r5227.
Assigning to Matthew.