From: Joshua Rüsweg Date: Tue, 8 Jan 2019 10:11:51 +0000 (+0100) Subject: Fix typo X-Git-Tag: 5.2.0_Alpha_1~296^2~51 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1031a0c53ced94cf7d173cb8df5f4e54993b01cf;p=GitHub%2FWoltLab%2FWCF.git Fix typo See #2825 --- diff --git a/wcfsetup/install/files/lib/system/file/upload/UploadFile.class.php b/wcfsetup/install/files/lib/system/file/upload/UploadFile.class.php index 1b3c35bb7d..3877295825 100644 --- a/wcfsetup/install/files/lib/system/file/upload/UploadFile.class.php +++ b/wcfsetup/install/files/lib/system/file/upload/UploadFile.class.php @@ -52,7 +52,7 @@ class UploadFile { * The unique id for the file. * @var String */ - private $uniquieId; + private $uniqueId; /** * UploadFile constructor. @@ -72,7 +72,7 @@ class UploadFile { $this->filesize = filesize($location); $this->processed = $processed; $this->viewableImage = $viewableImage; - $this->uniquieId = sha1(sha1_file($location) . sha1($location)); + $this->uniqueId = sha1(sha1_file($location) . sha1($location)); if (@getimagesize($location) !== false) { $this->isImage = true; @@ -131,7 +131,7 @@ class UploadFile { * @return String */ public function getUniqueFileId() { - return $this->uniquieId; + return $this->uniqueId; } /**