diff options
author | Vlad Krupin <vlad@php.net> | 2003-10-12 01:07:59 +0000 |
---|---|---|
committer | Vlad Krupin <vlad@php.net> | 2003-10-12 01:07:59 +0000 |
commit | db0a175bcb776efd8f611f64598ffe6462c4cb3f (patch) | |
tree | 0afbd685e0178c97795999b715ba7b807c26667c /ext/dbase | |
parent | 7299119f13790b242a91583c830dd00bf2d12efa (diff) | |
download | php-git-db0a175bcb776efd8f611f64598ffe6462c4cb3f.tar.gz |
rolling back fix for 23463. The "fix" broke more than it fixed (see bug 25558)
Diffstat (limited to 'ext/dbase')
-rw-r--r-- | ext/dbase/dbf_head.c | 4 |
1 files changed, 0 insertions, 4 deletions
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); |