Added comment for clarification about fseek() call in quota.php

This commit is contained in:
Vincent Petry 2013-10-25 16:15:01 +02:00
parent c8df27de73
commit ebcd9ae628
1 changed files with 2 additions and 0 deletions

View File

@ -81,6 +81,8 @@ class Quota {
} else {
$this->limit -= $offset;
}
// this wrapper needs to return "true" for success.
// the fseek call itself returns 0 on succeess
return !fseek($this->source, $offset, $whence);
}