Hi, in the method setParam of Zend_Controller_Request_Http,the code like this:
public function setParam($key, $value)
{
$keyName = (null !== ($alias = $this->getAlias($key))) ? $alias :
$key;
parent::setParam($key, $value);
return $this;
}
is it sould parent::setParam($keyName, $value) rather than
parent::setParam($key, $value) ?
