From: Ilia Alshanetsky Date: Sun, 18 Aug 2002 07:54:33 +0000 (+0000) Subject: Corrected if() syntax in previous patch. X-Git-Tag: RELEASE_0_91~404 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1aea030cf2defd6701ff1491f7e0e954b9f51994;p=php Corrected if() syntax in previous patch. --- 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; }