Hi there,

there is a bug in the Zend_File_Transfer_Abstract::setOptions() , the code
in the setOptions() as bellow:

if (is_array($options)) {
     $this->_options += $options;
}


Maybe the following code should it be:

if (is_array($options)) {
        $this->_options = $options + $this->_options;
}

Reply via email to