From: Vlad Krupin Date: Sun, 12 Oct 2003 01:09:28 +0000 (+0000) Subject: MFH fix for 25558 in case there is ever another 4.3 release. X-Git-Tag: php-4.3.4RC2~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ce3e8cdeca7fc5ff1e1d289185e2167936b31ee;p=php MFH fix for 25558 in case there is ever another 4.3 release. --- diff --git a/ext/dbase/dbf_head.c b/ext/dbase/dbf_head.c index 7a5d071a17..9ec1f40d6c 100644 --- a/ext/dbase/dbf_head.c +++ b/ext/dbase/dbf_head.c @@ -33,10 +33,6 @@ dbhead_t *get_dbf_head(int fd) /* build in core info */ dbh->db_fd = fd; - if (dbhead.dbh_dbt < 3) { - php_error(E_WARNING, "This file appears to be dbase ver. %d. Only version 3 and above is supported.", dbhead.dbh_dbt); - return NULL; - } dbh->db_dbt = dbhead.dbh_dbt; dbh->db_records = get_long(dbhead.dbh_records); dbh->db_hlen = get_short(dbhead.dbh_hlen);