]> granicus.if.org Git - php/commitdiff
MFH
authorAndrei Zmievski <andrei@php.net>
Sat, 21 Dec 2002 01:20:32 +0000 (01:20 +0000)
committerAndrei Zmievski <andrei@php.net>
Sat, 21 Dec 2002 01:20:32 +0000 (01:20 +0000)
NEWS
ext/dba/dba.c

diff --git a/NEWS b/NEWS
index 3a21c7505314e640b99d29beb5cc36b2cc46a25c..9290fe2641b86d71ab225197b131a4049353dc37 100644 (file)
--- 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
index 28638b66dacfc03cf6ff9c0780f092731eafa026..acebf6b5ccf228cae9a6bfa274d67998f715daef 100644 (file)
@@ -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)