From c07cd30cd0ceea3fa62f00b3afe8bd992c6c888b Mon Sep 17 00:00:00 2001 From: Ard Biesheuvel Date: Tue, 17 Feb 2004 20:57:26 +0000 Subject: [PATCH] Really disallow persistent connections if ini option is set --- ext/interbase/interbase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } /* }}} */ -- 2.50.1