_validate_offset

This commit is contained in:
William Knauss
2014-06-05 20:50:08 -04:00
parent 494087ab1d
commit 6f4d150e6f

View File

@@ -1049,7 +1049,7 @@ class parseCSV {
* @return true of false
*/
protected function _validate_offset ($current_row) {
if ( $this->sort_by === null && $this->offset !== null && $current_row < $this->offset ) {
if ($this->sort_by === null && $this->offset !== null && $current_row < $this->offset) {
return false;
}