CC-5786: Quota Enforcement in the File Upload API

small fix
This commit is contained in:
drigato 2014-04-14 12:21:59 -04:00
parent acf91bc627
commit 53ffa29b6b
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}