|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-11-26 17:02 UTC] rasmus at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 17:00:01 2025 UTC |
#include "std_your_project_is_great.h" ;) mime.c from 3.0.12 line 92/278 ---------------------------------------- loc = memchr(ptr, '\n', rem); name = strstr(ptr, " name=\""); if (name && name < loc) { ---------------------------------------- this depends on " around the name-parameter. netscape (works): Content-Disposition: form-data; name="_field_3" lynx (fails): Content-Disposition: form-data; name=_field_3 so PHP barfs the following while using lynx: ------------------------------------------- Warning: File upload error - no name component in content disposition in /var/www/htdocs/mot-2.0/db_modify_done.php3 on line 47 ------------------------------------------- i have created some patch wich seems to fix ther quotes-problem. (by making them optional like they should be) -> http://www.ash.de/php-3.0.12-mime.c-quotesfix