From: Ilia Alshanetsky Date: Sat, 30 Nov 2002 19:13:28 +0000 (+0000) Subject: MFH X-Git-Tag: php-4.3.0RC3~103 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77b9675c4b8d762fab27b462e15db68d0df46cb6;p=php MFH --- 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) {