diff options
author | Thies C. Arntzen <thies@php.net> | 2001-02-15 14:49:01 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2001-02-15 14:49:01 +0000 |
commit | 8499b430cff13387bc2f6232f184db506cefe52f (patch) | |
tree | c0f900041ef36296dbe738aa6dbfa7473c738a8b /ext/interbase/interbase.c | |
parent | 5ca813a5649bf59c2eee599f7c423a44d19e5cf4 (diff) | |
download | php-git-8499b430cff13387bc2f6232f184db506cefe52f.tar.gz |
@- Fixed some modules to allow using output-buffering. (Thies)
i nuked all unneded calls to php_header() - i'm not too sure how we do
handle HEAD Requests as they were only detected via php_header(). but calling
php_header from a module makes output-buffering unusable.
NOTICE: there is some EBSDIC stuff in gd.c - i think it's obsolete.
Diffstat (limited to 'ext/interbase/interbase.c')
-rw-r--r-- | ext/interbase/interbase.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index a1806b0976..2a815fec20 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -2831,10 +2831,6 @@ PHP_FUNCTION(ibase_blob_echo) GET_BLOB_ID_ARG(blob_arg, ib_blob_id); - if (!php_header()) { - RETURN_FALSE; - } - if (ib_blob_id) { /*not null ?*/ if (isc_open_blob(IB_STATUS, &ib_blob_id->link, &ib_blob_id->trans_handle, |