From 1aea030cf2defd6701ff1491f7e0e954b9f51994 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Sun, 18 Aug 2002 07:54:33 +0000 Subject: [PATCH] Corrected if() syntax in previous patch. --- ext/standard/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/file.c b/ext/standard/file.c index 9beefa6c79..15c2e902c4 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -1994,7 +1994,7 @@ PHP_FUNCTION(fgetcsv) bptr++; /* move on to first character in field */ /* Check if there is an end to the enclosure */ - if( !strchr(bptr, enclosure) ) { + if (!strchr(bptr, enclosure)) { continue; } -- 2.50.1