Changeset 902 for trunk/Common
- Timestamp:
- Feb 18, 2021, 1:59:28 PM (4 years ago)
- Location:
- trunk/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Types/File.php
r887 r902 127 127 $File = &$Item['Value']; 128 128 $Properties = array('Name' => $File->Name, 129 'Size' => $File->GetSize(), 'Directory' => $File->Directory );129 'Size' => $File->GetSize(), 'Directory' => $File->Directory, 'Hash' => 'SHA1(CONCAT(Id,Name,Size,Time))'); 130 130 $DbResult = $this->Database->select('File', '*', 'Id='.$File->Id); 131 131 if ($DbResult->num_rows > 0) -
trunk/Common/Global.php
r887 r902 328 328 function NotBlank(string $Text): string 329 329 { 330 if ($Text == '') return '  ';330 if ($Text == '') return ' '; 331 331 else return $Text; 332 332 }
Note:
See TracChangeset
for help on using the changeset viewer.