From: Fabii547 Date: Tue, 30 Jul 2019 09:16:54 +0000 (+0200) Subject: Fix assigning variable to itself in `Core/Ui/File/Upload.js` X-Git-Tag: 5.2.0_Alpha_4~26^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=cb955d54d5c2af31e274aba7d20f693415bed68a;p=GitHub%2FWoltLab%2FWCF.git Fix assigning variable to itself in `Core/Ui/File/Upload.js` --- diff --git a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/File/Upload.js b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/File/Upload.js index 6be0667ea1..816d4abda0 100644 --- a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/File/Upload.js +++ b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/File/Upload.js @@ -36,7 +36,6 @@ define(['Core', 'Language', 'Dom/Util', 'WoltLabSuite/Core/Ui/File/Delete', 'Upl this._options.multiple = this._options.maxFiles === null || this._options.maxFiles > 1; - this._options.url = this._options.url; if (this._options.url.indexOf('index.php') === 0) { this._options.url = WSC_API_URL + this._options.url; }