Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.0.0 RC1
-
Fix Version/s: 1.0.0 RC3
-
Component/s: Zend_Controller
-
Labels:None
Description
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.