Show
Ignore:
Timestamp:
04/06/08 20:01:50 (5 years ago)
Author:
Tatzelwurm
Message:

diverse kleiner Fehler beseitigt

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • downloadDatabase/files/lib/acp/form/DownloadDBDataEditForm.class.php

    r402 r407  
    121121                                $this->fileName = $this->upload['name']; 
    122122                                $this->mimeType = $this->upload['type']; 
    123                                 $this->groesse  = FileUtil::formatFilesize($this->upload['size']); 
     123                                $this->groesse  = $this->upload['size']; 
    124124                                if (StringUtil::indexOf($this->fileName, '.') !== false) { 
    125125                                        $this->fileExtension = StringUtil::toLowerCase(StringUtil::substring($this->fileName, StringUtil::lastIndexOf($this->fileName, '.') + 1)); 
     
    138138                                                        'mimeType'              => StringUtil::encodeHTML($this->mimeType), 
    139139                                                        'link'                  => $this->link, 
    140                                                         'groesse'               => $this->groesse, 
     140                                                        'groesse'               => intval($this->groesse), 
    141141                                                        'downloads'             => intval($this->downloads), 
    142142                                                        'userID'                => intval($this->dldbUserID),