- Timestamp:
- 04/06/08 20:01:50 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
downloadDatabase/files/lib/acp/form/DownloadDBDataEditForm.class.php
r402 r407 121 121 $this->fileName = $this->upload['name']; 122 122 $this->mimeType = $this->upload['type']; 123 $this->groesse = FileUtil::formatFilesize($this->upload['size']);123 $this->groesse = $this->upload['size']; 124 124 if (StringUtil::indexOf($this->fileName, '.') !== false) { 125 125 $this->fileExtension = StringUtil::toLowerCase(StringUtil::substring($this->fileName, StringUtil::lastIndexOf($this->fileName, '.') + 1)); … … 138 138 'mimeType' => StringUtil::encodeHTML($this->mimeType), 139 139 'link' => $this->link, 140 'groesse' => $this->groesse,140 'groesse' => intval($this->groesse), 141 141 'downloads' => intval($this->downloads), 142 142 'userID' => intval($this->dldbUserID),
