From: Alexander Ebert Date: Thu, 15 Dec 2016 03:15:59 +0000 (+0100) Subject: Added missing parameter for ajax credentials X-Git-Tag: 3.0.0_RC_1~3 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=41918b510a91598918afdd7872189832c1a067d1;p=GitHub%2FWoltLab%2FWCF.git Added missing parameter for ajax credentials --- diff --git a/wcfsetup/install/files/js/WoltLabSuite/Core/Upload.js b/wcfsetup/install/files/js/WoltLabSuite/Core/Upload.js index f629c11d1d..54be5b93ea 100644 --- a/wcfsetup/install/files/js/WoltLabSuite/Core/Upload.js +++ b/wcfsetup/install/files/js/WoltLabSuite/Core/Upload.js @@ -331,7 +331,8 @@ define(['AjaxRequest', 'Core', 'Dom/ChangeListener', 'Language', 'Dom/Util', 'Do silent: true, success: this._success.bind(this, uploadId), uploadProgress: this._progress.bind(this, uploadId), - url: this._options.url + url: this._options.url, + withCredentials: true }); request.sendRequest();