fixed PHP notice
This commit is contained in:
parent
752d1fd5b3
commit
85948a5849
|
@ -305,7 +305,7 @@ class quota extends baseModule {
|
||||||
$server = $servers[$q];
|
$server = $servers[$q];
|
||||||
$i=0;
|
$i=0;
|
||||||
$quotastring = "";
|
$quotastring = "";
|
||||||
while ($this->quota[$server][$i][0]) {
|
while (isset($this->quota[$server][$i][0])) {
|
||||||
$quotastring = $quotastring . $this->quota[$server][$i][0] . ',0,0,0,0:';
|
$quotastring = $quotastring . $this->quota[$server][$i][0] . ',0,0,0,0:';
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue