From 6f4d150e6f04e23d9547dd4e0b6f30deb9719be3 Mon Sep 17 00:00:00 2001 From: William Knauss Date: Thu, 5 Jun 2014 20:50:08 -0400 Subject: [PATCH] _validate_offset --- parsecsv.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsecsv.lib.php b/parsecsv.lib.php index ec79f3e..6010b16 100644 --- a/parsecsv.lib.php +++ b/parsecsv.lib.php @@ -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; }