fixed PHP notice

This commit is contained in:
Roland Gruber 2013-09-14 16:13:49 +00:00
parent 752d1fd5b3
commit 85948a5849
1 changed files with 1 additions and 1 deletions

View File

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