From 01e71adf36ae701687be81c8edff14194f66c16c Mon Sep 17 00:00:00 2001 From: William Knauss Date: Thu, 5 Jun 2014 20:52:43 -0400 Subject: [PATCH] _rfile --- parsecsv.lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parsecsv.lib.php b/parsecsv.lib.php index 8729062..fb36e9f 100644 --- a/parsecsv.lib.php +++ b/parsecsv.lib.php @@ -1154,8 +1154,8 @@ class parseCSV { * @return Data from file, or false on failure */ protected function _rfile ($file = null) { - if ( is_readable($file) ) { - if ( !($fh = fopen($file, 'r')) ) { + if (is_readable($file)) { + if (!($fh = fopen($file, 'r'))) { return false; }