mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
Fixed bug #42261 (header wrong for date field).
This commit is contained in:
parent
6a752ac6df
commit
ffab827d01
2 changed files with 5 additions and 0 deletions
2
NEWS
2
NEWS
|
@ -1,6 +1,8 @@
|
|||
PHP NEWS
|
||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||
?? Aug 2007, PHP 5.2.4
|
||||
- Fixed bug #42261 (header wrong for date field). (roberto at spadim dot com
|
||||
dot br, Ilia)
|
||||
- Fixed bug #42247 (ldap_parse_result() not defined under win32). (Jani)
|
||||
- Fixed bug #42237 (stream_copy_to_stream returns invalid values for mmaped
|
||||
streams). (andrew dot minerd at sellingsource dot com, Ilia)
|
||||
|
|
|
@ -157,6 +157,9 @@ int get_dbf_field(dbhead_t *dbh, dbfield_t *dbf)
|
|||
dbf->db_flen = dbfield.dbf_flen[0];
|
||||
dbf->db_fdc = dbfield.dbf_flen[1];
|
||||
break;
|
||||
case 'D':
|
||||
dbf->db_flen = 8;
|
||||
break;
|
||||
default:
|
||||
dbf->db_flen = get_short(dbfield.dbf_flen);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue