mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 402458 - "saveDocument func calls internalSave with aSkipPrompt param in the wrong position @ contentAreaUtils.js:168" [p=sgautherie.bz@free.fr (Serge Gautherie) r=Mano sr=Neil a=blocking-firefox3+]
This commit is contained in:
parent
83af0dfc4c
commit
9fbbe371b5
@ -166,7 +166,9 @@ function saveDocument(aDocument, aSkipPrompt)
|
||||
// Failure to get a content-disposition is ok
|
||||
}
|
||||
internalSave(aDocument.location.href, aDocument, null, contentDisposition,
|
||||
aDocument.contentType, false, null, null, aSkipPrompt);
|
||||
aDocument.contentType, false, null, null,
|
||||
aDocument.referrer ? makeURI(aDocument.referrer) : null,
|
||||
aSkipPrompt);
|
||||
}
|
||||
|
||||
function DownloadListener(win, transfer) {
|
||||
|
Loading…
Reference in New Issue
Block a user