'Content-Disposition' HTTP header is not case sensitive.

[GB.WEB]
* BUG: 'Content-Disposition' HTTP header is not case sensitive.
This commit is contained in:
Benoît Minisini 2023-02-02 16:17:59 +01:00
parent 54f62f479e
commit 3021e18df8
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[Component]
Key=gb.web
Version=3.17.90
Version=3.18.90
Authors=Benoît Minisini
Requires=gb.util.web

View File

@ -1,7 +1,7 @@
# Gambas Project File 3.0
Title=Web applications tools
Startup=Main
Version=3.17.90
Version=3.18.90
VersionFile=1
Component=gb.db
Component=gb.web

View File

@ -119,7 +119,7 @@ Private Sub Decode()
sLine = ReadLine()
If sLine Begins "Content-Disposition:" Then
If sLine Like "content-disposition:*" Then
bFile = False
sFileName = ""
aElt = Split(sLine, ";", Chr$(34))