CC-5786: Quota Enforcement in the File Upload API
small fix
This commit is contained in:
parent
acf91bc627
commit
53ffa29b6b
|
@ -241,7 +241,7 @@ class Application_Model_Systemstatus
|
|||
$diskInfo = self::GetDiskInfo();
|
||||
$diskInfo = $diskInfo[0];
|
||||
$diskUsage = $diskInfo->totalSpace - $diskInfo->totalFreeSpace;
|
||||
if ($diskUsage > $diskInfo->totalSpace) {
|
||||
if ($diskUsage >= $diskInfo->totalSpace) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue