No, actually it should not.

Greetings
Thomas Weidner, I18N Team Leader, Zend Framework
http://www.thomasweidner.com

----- Original Message ----- From: "Jacky Chen" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Thursday, September 11, 2008 9:32 AM
Subject: [fw-general] Bug with Zend_File_Transfer


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