fixed issue when no quotas are found

This commit is contained in:
Roland Gruber 2020-04-19 20:49:25 +02:00
parent 07f5ae2d7a
commit 8b38839dae
1 changed files with 3 additions and 0 deletions

View File

@ -599,6 +599,9 @@ class quota extends baseModule {
}
$dirs = explode(":", $quotas);
array_pop($dirs); // remove empty element at the end
if (empty($dirs)) {
continue;
}
for ($i = 0; $i < sizeof($dirs); $i++) {
if (strpos($dirs[$i], self::$QUOTA_PREFIX) !== 0) {
unset($dirs[$i]);