ID: 13405
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Old Bug Type: Scripting Engine problem
Bug Type: HTTP related
Operating System: 
PHP Version: 4.0.5
New Comment:

With which browser does this happen?


Previous Comments:
------------------------------------------------------------------------

[2001-09-23 10:12:17] [EMAIL PROTECTED]

It's just like Bug #5836, but with the "_name" - Array. If you have a couple of files 
to upload and the first is not set, then the array ${file."_name"} has only one key 
(index 0) with the name of the second (!) file. 
So when you loop through the file-array the wrong name is attached to the uploaded 
file.

Following function solves the problem:

function correctFileUploadBug($fp_sVarName) {

        GLOBAL ${$fp_sVarName}, ${$fp_sVarName."_name"};
        
        $aFile = &${$fp_sVarName};
        $aFileName = &${$fp_sVarName."_name"};
        
        $aNewFileName = Array();
        $j = 0;
        for ($i=0;$i<count($aFile);$i++) {
                
                if (trim($aFile[$i]) == "" || trim($aFile[$i]) == "none") {
                        $aNewFileName[] = "";
                        $j++;
                } else {
                        $aNewFileName[] = $aFileName[$i-$j];
                }
        }
        unset($aFile);
        unset($aFileName);
        ${$fp_sVarName."_name"} = $aNewFileName;
}


------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=13405&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to