From: Ard Biesheuvel Date: Tue, 17 Feb 2004 20:57:26 +0000 (+0000) Subject: Really disallow persistent connections if ini option is set X-Git-Tag: php-4.3.5RC4~92 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c07cd30cd0ceea3fa62f00b3afe8bd992c6c888b;p=php Really disallow persistent connections if ini option is set --- diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index 2a0ebbb4e6..246b1742e9 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -945,7 +945,7 @@ PHP_FUNCTION(ibase_connect) Open a persistent connection to an InterBase database */ PHP_FUNCTION(ibase_pconnect) { - _php_ibase_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1); + _php_ibase_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, IBG(allow_persistent)); } /* }}} */