From: Ilia Alshanetsky Date: Sat, 30 Nov 2002 19:12:48 +0000 (+0000) Subject: Fixed bug #20716. X-Git-Tag: RELEASE_1_0b3~245 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc13af6a07e6630a45a250a8c2645161c2f0c7a9;p=php Fixed bug #20716. --- diff --git a/ext/standard/file.c b/ext/standard/file.c index a1c923d332..eafb54ea13 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -2210,11 +2210,6 @@ PHP_FUNCTION(fgetcsv) if (enclosure && *bptr == enclosure) { bptr++; /* move on to first character in field */ - /* Check if there is an end to the enclosure */ - if (!strchr(bptr, enclosure)) { - continue; - } - /* 2A. handle enclosure delimited field */ while (*bptr) { if (*bptr == enclosure) {