iliaa Wed Jan 23 01:22:57 2008 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/interbase php_ibase_includes.h /php-src NEWS Log: MFB:Fixed bug #43912 (Interbase column names are truncated to 31 characters) http://cvs.php.net/viewvc.cgi/php-src/ext/interbase/php_ibase_includes.h?r1=1.16.2.1.2.2&r2=1.16.2.1.2.3&diff_format=u Index: php-src/ext/interbase/php_ibase_includes.h diff -u php-src/ext/interbase/php_ibase_includes.h:1.16.2.1.2.2 php-src/ext/interbase/php_ibase_includes.h:1.16.2.1.2.3 --- php-src/ext/interbase/php_ibase_includes.h:1.16.2.1.2.2 Mon Dec 31 07:20:07 2007 +++ php-src/ext/interbase/php_ibase_includes.h Wed Jan 23 01:22:57 2008 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_ibase_includes.h,v 1.16.2.1.2.2 2007/12/31 07:20:07 sebastian Exp $ */ +/* $Id: php_ibase_includes.h,v 1.16.2.1.2.3 2008/01/23 01:22:57 iliaa Exp $ */ #ifndef PHP_IBASE_INCLUDES_H #define PHP_IBASE_INCLUDES_H @@ -30,7 +30,7 @@ #endif #ifndef METADATALENGTH -#define METADATALENGTH 32 +#define METADATALENGTH 68 #endif #define RESET_ERRMSG do { IBG(errmsg)[0] = '\0'; IBG(sql_code) = 0; } while (0) http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.1058&r2=1.2027.2.547.2.1059&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.547.2.1058 php-src/NEWS:1.2027.2.547.2.1059 --- php-src/NEWS:1.2027.2.547.2.1058 Sun Jan 20 14:13:11 2008 +++ php-src/NEWS Wed Jan 23 01:22:57 2008 @@ -10,6 +10,8 @@ - Fixed faulty fix for bug #40189 (endless loop in zlib.inflate stream filter). (Greg) +- Fixed bug #43912 (Interbase column names are truncated to 31 characters). + (Ilia) - Fixed bug #43875 (Two error messages returned for $new and $flag argument in mysql_connect()). (Hannes) - Fixed bug #43863 (str_word_count() breaks on cyrillic "ya" in locale cp1251).
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php