bugfix: now really returns MIME type
git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@1830 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
@@ -77,7 +77,7 @@ HTTPSRV_CGI(){
|
|||||||
my $MIMEtype= filename2MIMEType($filename);
|
my $MIMEtype= filename2MIMEType($filename);
|
||||||
#return("text/plain; charset=utf-8", "HTTPSRV device: $name, filename: $filename, MIME type: $MIMEtype");
|
#return("text/plain; charset=utf-8", "HTTPSRV device: $name, filename: $filename, MIME type: $MIMEtype");
|
||||||
if(!defined($defs{$name})) {
|
if(!defined($defs{$name})) {
|
||||||
return("$MIMEtype; charset=utf-8", "Unknown HTTPSRV device: $name");
|
return("text/plain; charset=utf-8", "Unknown HTTPSRV device: $name");
|
||||||
}
|
}
|
||||||
my $directory= $defs{$name}{fhem}{directory};
|
my $directory= $defs{$name}{fhem}{directory};
|
||||||
$filename= "$directory/$filename";
|
$filename= "$directory/$filename";
|
||||||
@@ -86,7 +86,7 @@ HTTPSRV_CGI(){
|
|||||||
binmode(INPUTFILE);
|
binmode(INPUTFILE);
|
||||||
@contents= <INPUTFILE>;
|
@contents= <INPUTFILE>;
|
||||||
close(INPUTFILE);
|
close(INPUTFILE);
|
||||||
return("", join("", @contents));
|
return("$MIMEtype; charset=utf-8", join("", @contents));
|
||||||
} else {
|
} else {
|
||||||
return("text/plain; charset=utf-8", "File not found: $filename");
|
return("text/plain; charset=utf-8", "File not found: $filename");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user