From: Andrei Zmievski Date: Sat, 21 Dec 2002 01:20:32 +0000 (+0000) Subject: MFH X-Git-Tag: php-4.3.0RC4~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=641bf4653a9ade9ac1f91c170fc6b66132428fb0;p=php MFH --- diff --git a/NEWS b/NEWS index 3a21c75053..9290fe2641 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,8 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ? ? ??? 2002, Version 4.3.0 +- Aliased dba_popen() to dba_open() until 4.3.1 when persistent STDIO streams + are introduced. (Andrei) - Fixed a security bug in the bundled MySQL library. (Georg, Stefan) - ATTENTION! "make install" will *by default* install the CLI SAPI binary in {PREFIX}/bin/php. If you don't disable the CGI binary, it will be diff --git a/ext/dba/dba.c b/ext/dba/dba.c index 28638b66da..acebf6b5cc 100644 --- a/ext/dba/dba.c +++ b/ext/dba/dba.c @@ -50,7 +50,9 @@ */ function_entry dba_functions[] = { PHP_FE(dba_open, NULL) - PHP_FE(dba_popen, NULL) + PHP_FALIAS(dba_popen, dba_open, NULL) + /* Disabled until 4.3.1, when persistent STDIO streams are implemented. */ + /* PHP_FE(dba_popen, NULL) */ PHP_FE(dba_close, NULL) PHP_FE(dba_delete, NULL) PHP_FE(dba_exists, NULL)