fixed PHP notice
This commit is contained in:
parent
752d1fd5b3
commit
85948a5849
|
@ -305,7 +305,7 @@ class quota extends baseModule {
|
|||
$server = $servers[$q];
|
||||
$i=0;
|
||||
$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:';
|
||||
$i++;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue