Merge pull request #17569 from liviuconcioiu/export_limit
Fix export limit size calculation Fixes #17424
This commit is contained in:
commit
8f55743def
@ -797,7 +797,7 @@ class Export
|
||||
|
||||
$size = (int) $this->dbi->fetchValue($query);
|
||||
//Converting the size to MB
|
||||
$size /= 1024 / 1024;
|
||||
$size /= 1024 * 1024;
|
||||
if ($size > $tableSize) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user