andrei          Fri Dec 20 20:20:33 2002 EDT

  Modified files:              (Branch: PHP_4_3)
    /php4       NEWS 
    /php4/ext/dba       dba.c 
  Log:
  MFH
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1247.2.27 php4/NEWS:1.1247.2.28
--- php4/NEWS:1.1247.2.27       Mon Dec 16 04:11:15 2002
+++ php4/NEWS   Fri Dec 20 20:20:32 2002
@@ -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: php4/ext/dba/dba.c
diff -u php4/ext/dba/dba.c:1.61.2.8 php4/ext/dba/dba.c:1.61.2.9
--- php4/ext/dba/dba.c:1.61.2.8 Fri Dec 20 15:25:19 2002
+++ php4/ext/dba/dba.c  Fri Dec 20 20:20:32 2002
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: dba.c,v 1.61.2.8 2002/12/20 20:25:19 helly Exp $ */
+/* $Id: dba.c,v 1.61.2.9 2002/12/21 01:20:32 andrei Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -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)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to