Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.10.6
-
Fix Version/s: 1.11.0
-
Component/s: Zend_Controller
-
Labels:None
Description
If site runs on custom port for example:
http://example.org:50000/
In the IndexController/indexAction:
$redirector = $this->_helper->getHelper('Redirector');
$redirector->setUseAbsoluteUri()->setGotoSimple('example');
You will be redirected to:
http://example.org:50000:50000/index/example
The problem is in the: Zend/Controller/Action/Helper/Redirector.php
the protected function _redirect append port number, but $_SERVER['HTTP_HOST'] contains port number too.
Patch with test attached.