[w3m-dev 02889] fix scripts/multipart/multipart.cgi.in

* scripts/multipart/multipart.cgi.in: return "" instead of next
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2002-01-22 17:34:13 +00:00
parent 7b85bcab2f
commit f16943392e
2 changed files with 7 additions and 2 deletions

View File

@@ -250,7 +250,7 @@ sub form_decode {
sub guess_type {
local($_) = @_;
/\.(\w+)$/ || next;
/\.(\w+)$/ || return "";
$_ = $1;
tr/A-Z/a-z/;
%mime_type = &load_mime_type($MIME_TYPE);