diff options
author | Popa Adrian Marius <mapopa@reea.net> | 2014-04-08 17:36:38 +0300 |
---|---|---|
committer | Popa Adrian Marius <mapopa@reea.net> | 2014-04-08 17:36:38 +0300 |
commit | 8abcd97333561586330c703909e04766e753439d (patch) | |
tree | 03db5115dfbb30302ae65dccb9fee4a5c3d13555 /ext/interbase/interbase.c | |
parent | 88cd44aa62783875567ec2e9857407265917e35f (diff) | |
download | php-git-8abcd97333561586330c703909e04766e753439d.tar.gz |
cleanup old unsupported versions of Firebird 1.0.x
Diffstat (limited to 'ext/interbase/interbase.c')
-rw-r--r-- | ext/interbase/interbase.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index c78c522606..f4dae3ad21 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -818,10 +818,6 @@ PHP_MINFO_FUNCTION(ibase) snprintf( (s = tmp), sizeof(tmp), "Firebird API version %d", FB_API_VER); #elif (SQLDA_CURRENT_VERSION > 1) s = "Interbase 7.0 and up"; -#elif !defined(DSC_null) - s = "Interbase 6"; -#else - s = "Firebird 1.0"; #endif php_info_print_table_row(2, "Compile-time Client Library Version", s); @@ -840,8 +836,6 @@ PHP_MINFO_FUNCTION(ibase) #endif if (info_func) { info_func(s = tmp); - } else { - s = "Firebird 1.0/Interbase 6"; } php_info_print_table_row(2, "Run-time Client Library Version", s); } while (0); |